Remove dead methods, constants, and add a javadoc

This commit is contained in:
Tadgh 2020-08-01 13:19:52 -07:00
parent 160155bd8f
commit da30772a01
3 changed files with 3 additions and 10 deletions

View File

@ -159,12 +159,6 @@ public class EmpiProviderClearLinkR4Test extends BaseLinkR4Test {
}
}
@Nonnull
protected EmpiLink getOnlyPractitionerLink() {
return myEmpiLinkDaoSvc.findEmpiLinkByTarget(myPractitioner).get();
}
@Nonnull
protected List<EmpiLink> getPractitionerLinks() {
return myEmpiLinkDaoSvc.findEmpiLinksByTarget(myPractitioner);

View File

@ -25,8 +25,9 @@ import org.hl7.fhir.instance.model.api.IBaseResource;
public interface IEmpiChannelSubmitterSvc {
/**
* TODO GGG write javadoc
* @param theResource
* Given an IBaseResource, submit it to the EMPI channel for processing.
*
* @param theResource the {@link IBaseResource} that should have EMPI processing applied to it.
*/
void submitResourceToEmpiChannel(IBaseResource theResource);
}

View File

@ -85,9 +85,7 @@ public class ProviderConstants {
public static final String EMPI_CLEAR = "$empi-clear";
public static final String EMPI_CLEAR_TARGET_TYPE = "targetType";
public static final String OPERATION_EMPI_BATCH_RUN = "$empi-batch-run";
public static final String EMPI_BATCH_RUN_TARGET_TYPE = "targetType" ;
public static final String EMPI_BATCH_RUN_CRITERIA= "criteria" ;
public static final String EMPI_BATCH_RUN_RESOURCE_IDS = "resourceIds" ;
public static final String OPERATION_EMPI_BATCH_RUN_OUT_PARAM_SUBMIT_COUNT = "submitted" ;
public static final String OPERATION_EMPI_CLEAR_OUT_PARAM_DELETED_COUNT = "deleted";
}