Class DicomObjectDescriptionType
- java.lang.Object
-
- org.openehealth.ipf.commons.audit.model.DicomObjectDescriptionType
-
- All Implemented Interfaces:
Serializable
,Validateable
public class DicomObjectDescriptionType extends Object implements Serializable, Validateable
- Since:
- 3.5
- Author:
- Christian Ohr
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DicomObjectDescriptionType.SOPClass
-
Constructor Summary
Constructors Constructor Description DicomObjectDescriptionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getAccession()
Boolean
getAnonymized()
A single value of True or False indicating whether or not all patient identifying information was removed from the dataBoolean
getEncrypted()
A single value of True or False indicating whether or not the data was encrypted.List<String>
getMPPS()
List<DicomObjectDescriptionType.SOPClass>
getSOPClasses()
List<String>
getStudyIDs()
void
setAnonymized(Boolean anonymized)
A single value of True or False indicating whether or not all patient identifying information was removed from the datavoid
setEncrypted(Boolean encrypted)
A single value of True or False indicating whether or not the data was encrypted.void
validate()
Validates the constructed audit message against the specification, because API does not completely prevent constructing incomplete or inconsistent messages.
-
-
-
Method Detail
-
getSOPClasses
public List<DicomObjectDescriptionType.SOPClass> getSOPClasses()
-
validate
public void validate()
Description copied from interface:Validateable
Validates the constructed audit message against the specification, because API does not completely prevent constructing incomplete or inconsistent messages.- Specified by:
validate
in interfaceValidateable
-
getEncrypted
public Boolean getEncrypted()
A single value of True or False indicating whether or not the data was encrypted.
-
setEncrypted
public void setEncrypted(Boolean encrypted)
A single value of True or False indicating whether or not the data was encrypted.
-
getAnonymized
public Boolean getAnonymized()
A single value of True or False indicating whether or not all patient identifying information was removed from the data
-
setAnonymized
public void setAnonymized(Boolean anonymized)
A single value of True or False indicating whether or not all patient identifying information was removed from the data
-
-