Examples of RpmsService


Examples of com.krminc.phr.ws.client.RpmsService

    ) {
        JSONObject jsonResult = new JSONObject();
        JSONArray jsonPatients = new JSONArray();
        try {
            // TODO: Need to refactor how service locator and instantiation is handled. DI?
            RpmsService rpmsService = new RpmsService(resourceId);
            List<FMPatient> patients = rpmsService.getPatientList(value);
            logger.debug("patients size: {}", patients.size());
            for (FMPatient patient : patients) {
                if(value.equalsIgnoreCase(patient.getID())) {
                    JSONObject jsonPatient = new JSONObject();
                    jsonPatient.put("hrn", patient.getID());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.