Package uk.nhs.interoperability.payloads.noncodedcdav2

Examples of uk.nhs.interoperability.payloads.noncodedcdav2.ClinicalDocument.serialise()


    super.init("noncodedcda/", "NonCodedCDAv2Helper-serialiseFullNonXMLBody", "NonCodedCDA Helper: Full Non-XML Body Serialise", "This uses the helper class to generate a full non coded CDA document with a full set of fields, and serialises to a CDA document, which is compared with an expected document example.");
    try {
      // Use the helper to create the document
      ClinicalDocument doc = NonCodedCDADocumentCreationHelper.createDocument(full);
      // Serialise to a CDA XML Document
      String xml = doc.serialise();
     
      // Generate the rendered version
      super.render(xml);
     
      content = content.replaceAll("#TESTRESULT#", "<div class='pass'>PASS: Successfully created full CDA document</div>");
View Full Code Here


      // Use the helper to create the document
      ClinicalDocument doc = NonCodedCDADocumentCreationHelper.createDocument(minimal);
      String data = "PFRlc3RYTUw+PC9UZXN0WE1MPg==";
      doc = NonCodedCDADocumentCreationHelper.addNonXMLBody(doc, AttachmentType.Base64, "text/xml", data);
      // Serialise to a CDA XML Document
      String xml = doc.serialise();
      // Now check it is valid according to the schema
      testAgainstSchema(
          PropertyReader.getProperty("nonCodedCDASchemaPath")+"POCD_MT000002UK01.xsd",
          xml);
     
View Full Code Here

      // Use the helper to create the document
      ClinicalDocument doc = NonCodedCDADocumentCreationHelper.createDocument(minimal);
      String data = "PFRlc3RYTUw+PC9UZXN0WE1MPg==";
      doc = NonCodedCDADocumentCreationHelper.addNonXMLBody(doc, AttachmentType.Base64, "text/xml", data);
      // Serialise to a CDA XML Document
      String xml = doc.serialise();
      // And then transform and re-test against templated schema
      testAgainstTemplatedSchema(
          PropertyReader.getProperty("nonCodedCDASchemaPath")+"POCD_MT010011GB02.xsd",
          xml);
     
View Full Code Here

      // Use the helper to create the document
      ClinicalDocument doc = NonCodedCDADocumentCreationHelper.createDocument(full);
      String data = "PFRlc3RYTUw+PC9UZXN0WE1MPg==";
      doc = NonCodedCDADocumentCreationHelper.addNonXMLBody(doc, AttachmentType.Base64, "text/xml", data);
      // Serialise to a CDA XML Document
      String xml = doc.serialise();
      // Now check it is valid according to the schema
      testAgainstSchema(
          PropertyReader.getProperty("nonCodedCDASchemaPath")+"POCD_MT000002UK01.xsd",
          xml);
     
View Full Code Here

      // Use the helper to create the document
      ClinicalDocument doc = NonCodedCDADocumentCreationHelper.createDocument(full);
      String data = "PFRlc3RYTUw+PC9UZXN0WE1MPg==";
      doc = NonCodedCDADocumentCreationHelper.addNonXMLBody(doc, AttachmentType.Base64, "text/xml", data);
      // Serialise to a CDA XML Document
      String xml = doc.serialise();
      // And then transform and re-test against templated schema
      testAgainstTemplatedSchema(
          PropertyReader.getProperty("nonCodedCDASchemaPath")+"POCD_MT010011GB02.xsd",
          xml);
     
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.