Package com.krminc.phr.ws.client

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

Related Classes of com.krminc.phr.ws.client.RpmsService

Copyright © 2018 www.massapicom. 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.