package org.hl7.v3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * * Data that is primarily intended for human interpretation * or for further machine processing is outside the scope of * HL7. This includes unformatted or formatted written language, * multimedia data, or structured information as defined by a * different standard (e.g., XML-signatures.) Instead of the * data itself, an ED may contain * only a reference (see TEL.) Note * that the ST data type is a * specialization of the ED data type * when the ED media type is text/plain. * * * <p>Java class for ED complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ED"> * <complexContent> * <extension base="{urn:hl7-org:v3}BIN"> * <sequence> * <element name="reference" type="{urn:hl7-org:v3}TEL" minOccurs="0"/> * <element name="thumbnail" type="{urn:hl7-org:v3}thumbnail" minOccurs="0"/> * </sequence> * <attribute name="mediaType" type="{urn:hl7-org:v3}cs" default="text/plain" /> * <attribute name="language" type="{urn:hl7-org:v3}cs" /> * <attribute name="compression" type="{urn:hl7-org:v3}CompressionAlgorithm" /> * <attribute name="integrityCheck" type="{urn:hl7-org:v3}bin" /> * <attribute name="integrityCheckAlgorithm" type="{urn:hl7-org:v3}IntegrityCheckAlgorithm" default="SHA-1" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ED", propOrder = { "reference", "thumbnail" }) @XmlSeeAlso({ Thumbnail.class, ST.class }) public class ED extends BIN { /** * */ private static final long serialVersionUID = 1L; @XmlElement protected TEL reference; @XmlElement protected Thumbnail thumbnail; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String mediaType; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String language; @XmlAttribute protected CompressionAlgorithm compression; @XmlAttribute protected byte[] integrityCheck; @XmlAttribute protected IntegrityCheckAlgorithm integrityCheckAlgorithm; /** * Gets the value of the mediaType property. * * @return * possible object is * {@link String } * */ public String getMediaType() { if (mediaType == null) { return "text/plain"; } else { return mediaType; } } /** * Sets the value of the mediaType property. * * @param value * allowed object is * {@link String } * */ public void setMediaType(String value) { this.mediaType = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the compression property. * * @return * possible object is * {@link CompressionAlgorithm } * */ public CompressionAlgorithm getCompression() { return compression; } /** * Sets the value of the compression property. * * @param value * allowed object is * {@link CompressionAlgorithm } * */ public void setCompression(CompressionAlgorithm value) { this.compression = value; } /** * Gets the value of the integrityCheck property. * * @return * possible object is * byte[] */ public byte[] getIntegrityCheck() { return integrityCheck; } /** * Sets the value of the integrityCheck property. * * @param value * allowed object is * byte[] */ public void setIntegrityCheck(byte[] value) { this.integrityCheck = ((byte[]) value); } /** * Gets the value of the integrityCheckAlgorithm property. * * @return * possible object is * {@link IntegrityCheckAlgorithm } * */ public IntegrityCheckAlgorithm getIntegrityCheckAlgorithm() { if (integrityCheckAlgorithm == null) { return IntegrityCheckAlgorithm.SHA_1; } else { return integrityCheckAlgorithm; } } /** * Sets the value of the integrityCheckAlgorithm property. * * @param value * allowed object is * {@link IntegrityCheckAlgorithm } * */ public void setIntegrityCheckAlgorithm(IntegrityCheckAlgorithm value) { this.integrityCheckAlgorithm = value; } }