Examples of PatientIdentification


Examples of ke.go.moh.oec.pisinterfaces.beans.PatientIdentification

     * @param model
     * @return String naming the .jsp page to display
     */
    @RequestMapping(value = "/sentPatientId.htm", method = RequestMethod.GET)
    public String showUserForm(ModelMap model) {
        PatientIdentification patientId = new PatientIdentification();
        model.addAttribute(patientId);

        return "sendPatientInfo";
    }
View Full Code Here

Examples of ke.go.moh.oec.pisinterfaces.beans.PatientIdentification

        CdaRecord record = null;
        if (cdaList != null && cdaList.containsKey(cdaID)) {
            record = cdaList.get(cdaID);
        } else {
            // Need to round trip to query for requested cda
            PatientIdentification pid = new PatientIdentification();
            pid.setCdaID(cdaID);
            Map<String, CdaRecord> resultList = executeQuery(pid);

            record = resultList.get(cdaID);
            if (record == null) {
                // No match found, redirect to search w/ error
View Full Code Here

Examples of ke.go.moh.oec.pisinterfaces.beans.PatientIdentification

     *
     * @return a new PatientIdentification
     */
    @ModelAttribute("patientIdentification")
    public PatientIdentification createPatientId() {
        return new PatientIdentification();
    }
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.