Remove dead methods, constants, and add a javadoc
This commit is contained in:
parent
160155bd8f
commit
da30772a01
|
@ -159,12 +159,6 @@ public class EmpiProviderClearLinkR4Test extends BaseLinkR4Test {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Nonnull
|
|
||||||
protected EmpiLink getOnlyPractitionerLink() {
|
|
||||||
return myEmpiLinkDaoSvc.findEmpiLinkByTarget(myPractitioner).get();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nonnull
|
@Nonnull
|
||||||
protected List<EmpiLink> getPractitionerLinks() {
|
protected List<EmpiLink> getPractitionerLinks() {
|
||||||
return myEmpiLinkDaoSvc.findEmpiLinksByTarget(myPractitioner);
|
return myEmpiLinkDaoSvc.findEmpiLinksByTarget(myPractitioner);
|
||||||
|
|
|
@ -25,8 +25,9 @@ import org.hl7.fhir.instance.model.api.IBaseResource;
|
||||||
public interface IEmpiChannelSubmitterSvc {
|
public interface IEmpiChannelSubmitterSvc {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO GGG write javadoc
|
* Given an IBaseResource, submit it to the EMPI channel for processing.
|
||||||
* @param theResource
|
*
|
||||||
|
* @param theResource the {@link IBaseResource} that should have EMPI processing applied to it.
|
||||||
*/
|
*/
|
||||||
void submitResourceToEmpiChannel(IBaseResource theResource);
|
void submitResourceToEmpiChannel(IBaseResource theResource);
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,9 +85,7 @@ public class ProviderConstants {
|
||||||
public static final String EMPI_CLEAR = "$empi-clear";
|
public static final String EMPI_CLEAR = "$empi-clear";
|
||||||
public static final String EMPI_CLEAR_TARGET_TYPE = "targetType";
|
public static final String EMPI_CLEAR_TARGET_TYPE = "targetType";
|
||||||
public static final String OPERATION_EMPI_BATCH_RUN = "$empi-batch-run";
|
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_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_BATCH_RUN_OUT_PARAM_SUBMIT_COUNT = "submitted" ;
|
||||||
public static final String OPERATION_EMPI_CLEAR_OUT_PARAM_DELETED_COUNT = "deleted";
|
public static final String OPERATION_EMPI_CLEAR_OUT_PARAM_DELETED_COUNT = "deleted";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue