Examples of ParticipantObjectDescription


Examples of org.dcm4che3.audit.ParticipantObjectDescription

        return poi;
    }
  
    public static ParticipantObjectDescription createParticipantObjectDescription(
            Boolean encrypted, Boolean anonymized) {
        ParticipantObjectDescription pod = new ParticipantObjectDescription();
        pod.setEncrypted(encrypted);
        pod.setAnonymized(anonymized);
        return pod;
    }
View Full Code Here

Examples of org.dcm4che3.audit.ParticipantObjectDescription

        msg.getAuditSourceIdentification().add(
                AuditMessages.createAuditSourceIdentification(
                    "Hospital",
                    "ReadingRoom",
                    AuditMessages.AuditSourceTypeCode.EndUserDisplayDevice));
        ParticipantObjectDescription pod = new ParticipantObjectDescription();
        pod.getMPPS().add(AuditMessages.createMPPS("1.2.840.10008.1.2.3.4.5"));
        pod.getAccession().add(AuditMessages.createAccession("12341234"));
        pod.getSOPClass().add(AuditMessages.createSOPClass(
                "1.2.840.10008.5.1.4.1.1.2", 1500));
        pod.getSOPClass().add(AuditMessages.createSOPClass(
                "1.2.840.10008.5.1.4.1.1.11.1", 3));
        msg.getParticipantObjectIdentification().add(
                AuditMessages.createParticipantObjectIdentification(
                        "1.2.840.10008.2.3.4.5.6.7.78.8",
                        AuditMessages.ParticipantObjectIDTypeCode.StudyInstanceUID,
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.