Package uk.nhs.interoperability.payloads.templates

Examples of uk.nhs.interoperability.payloads.templates.CodedSection


      Date dateOfBirth = document.getPatient().getBirthTime().getDate();
      String gpPractice = document.getPatient().getRegisteredGPOrgName();
     
      List<CodedSections> sections = document.getCodedSections();
      for(CodedSections s : sections) {
        CodedSection cs = s.getCodedEntry();
       
      }
     
      // Now re-serialise
      String result = document.serialise();
View Full Code Here


    }

    // Loop through coded sections, extracting values
    List<CodedSections> codedSections = document.getCodedSections();
    for (CodedSections s : codedSections) {
      CodedSection codedSection = s.getCodedEntry();
      String className = ((Payload)codedSection).getClassName();
     
      // End of life care plan
      if (className.equals("EoLCarePlan")) {
        EoLCarePlan eolcp = (EoLCarePlan)codedSection;
View Full Code Here

TOP

Related Classes of uk.nhs.interoperability.payloads.templates.CodedSection

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.