package gov.nist.registry.ws.sq; import gov.nist.registry.common2.exception.MetadataException; import gov.nist.registry.common2.exception.MetadataValidationException; import gov.nist.registry.common2.exception.XDSRegistryOutOfResourcesException; import gov.nist.registry.common2.exception.XdsException; import gov.nist.registry.common2.exception.XdsInternalException; import gov.nist.registry.common2.registry.Metadata; import gov.nist.registry.common2.registry.storedquery.StoredQuerySupport; import java.util.List; import org.openhealthtools.openxds.log.LoggerException; /** Generic implementation of GetDocumentsAndAssociations Stored Query. This class knows how to parse a * GetDocumentsAndAssociations Stored Query request producing a collection of instance variables describing * the request. A sub-class must provide the runImplementation() method that uses the pre-parsed * information about the stored query and queries a metadata database. * @author bill * */ abstract public class GetDocumentsAndAssociations extends StoredQuery { /** * Method required in subclasses (implementation specific class) to define specific * linkage to local database * @return matching metadata * @throws MetadataException * @throws XdsException * @throws LoggerException */ abstract protected Metadata runImplementation() throws MetadataException, XdsException, LoggerException; /** * Basic constructor * @param sqs * @throws MetadataValidationException */ public GetDocumentsAndAssociations(StoredQuerySupport sqs) { super(sqs); } void validateParameters() throws MetadataValidationException { // param name, required?, multiple?, is string?, same size as, alternative sqs.validate_parm("$XDSDocumentEntryUniqueId", true, true, true, null, "$XDSDocumentEntryEntryUUID"); sqs.validate_parm("$XDSDocumentEntryEntryUUID", true, true, true, null, "$XDSDocumentEntryUniqueId"); if (sqs.has_validation_errors) throw new MetadataValidationException("Metadata Validation error present"); } protected List<String> uids; protected List<String> uuids; void parseParameters() throws XdsInternalException, XdsException, LoggerException { uids = sqs.params.getListParm("$XDSDocumentEntryUniqueId"); uuids = sqs.params.getListParm("$XDSDocumentEntryEntryUUID"); } /** * Implementation of Stored Query specific logic including parsing and validating parameters. * @throws XdsInternalException * @throws XdsException * @throws LoggerException * @throws XDSRegistryOutOfResourcesException */ public Metadata runSpecific() throws XdsException, LoggerException { validateParameters(); parseParameters(); if (uuids == null && uids == null) throw new XdsInternalException("GetDocumentsAndAssociations Stored Query: $uuid not found as a multi-value parameter"); return runImplementation(); } }