Examples of ConsentID


Examples of uk.nhs.interoperability.payloads.commontypes.ConsentID

   
    // Consent
    if (childScreeningFields.getConsent() != null) {
      template.setAuthorizingConsent(new Consent()
                          .setConsentCode(childScreeningFields.getConsent())
                          .addID(new ConsentID(CDAUUID.generateUUIDString())));
    }

    // ==== Now create the coded sections ====
   
    // Blood Spot Screening
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.ConsentID

  }
 
  public static Consent createFull() {
    Consent template = new Consent();
   
    template.addID(new ConsentID().setRoot("7AFDCAD6-1CE3-45A6-A176-DDAC27F46C87"));
     template.setConsentCode(DocumentConsentSnCT._319951000000105);
   
    return template;
  }
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.ConsentID

    return template;
  }
 
  public static Consent createConsent() {
    Consent template = new Consent();
    template.addID(new ConsentID("7AFDCAD6-1CE3-45A6-A176-DDAC27F46C87"));
    template.setConsentCode(DocumentConsentSnCT._Consentgiventosharepatientdatawithspecifiedthirdparty);
    return template;
  }
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.