Examples of CodedSection


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

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

    }

    // 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
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.