Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.constant;
/**
* This class consists of constants representing the Rest URI end points.
*
* @author Ian Meinert
* @since 1.0
*/
public final class RestUriConstants {
/**
* Default constructor for the static methods.
*/
private RestUriConstants() {
// Not used
}
/**
* The patient URL end point.
*/
public static final String GET_ROOT = "/{patientId}";
/**
* The patient allergies URL end point.
*/
public static final String GET_ALLERGIES = "/{patientId}/allergies";
/**
* The patient immunizations URL end point.
*/
public static final String GET_IMMUNIZATIONS = "/{patientId}/immunizations";
/**
* The patient progress notes URL end point.
*/
public static final String GET_PROGRESS_NOTES = "/{patientId}/progress-notes";
/**
* The patient problem list URL end point.
*/
public static final String GET_PROBLEM_LIST = "/{patientId}/problem-list";
/**
* The patient appointments URL end point.
*/
public static final String GET_APPOINTMENTS = "/{patientId}/appointments";
/**
* The patient labs URL end point.
*
* @deprecated
*/
public static final String GET_LABS = "/{patientId}/labs";
/**
* The patient vitals URL end point.
*
* @deprecated
*/
public static final String GET_VITALS = "/{patientId}/vitals";
/**
* The patient consults URL end point.
*/
public static final String GET_CONSULTS = "/{patientId}/consults";
/**
* The patient measurements URL end point.
*/
public static final String GET_MEASUREMENTS = "/{patientId}/measurements";
/**
* The patient measurements last measures URL end point.
*/
public static final String GET_LAST_MEASURES = "/{patientId}/last-measurements";
/**
* The API build version.
*/
public static final String GET_BUILD_VERSION = "/build/details";
}