// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.07.24 at 11:42:28 PM CEST // package eu.prestoprime.model.ext.qa; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for DisseminationType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="DisseminationType"> * <complexContent> * <extension base="{urn:mpeg:mpeg7:schema:2004}DSType"> * <sequence> * <element name="Source" type="{urn:mpeg:mpeg7:schema:2004}TextualType" minOccurs="0"/> * <element name="Format" type="{urn:mpeg:mpeg7:schema:2004}ControlledTermUseType" minOccurs="0"/> * <element name="Disseminator" type="{urn:mpeg:mpeg7:schema:2004}MediaAgentType" minOccurs="0"/> * <element name="Location" type="{urn:mpeg:mpeg7:schema:2004}PlaceType" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DisseminationType", propOrder = { "source", "format", "disseminator", "location" }) public class DisseminationType extends DSType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Source") protected TextualType source; @XmlElement(name = "Format") protected ControlledTermUseType format; @XmlElement(name = "Disseminator") protected MediaAgentType disseminator; @XmlElement(name = "Location") protected PlaceType location; /** * Gets the value of the source property. * * @return possible object is {@link TextualType } * */ public TextualType getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is {@link TextualType } * */ public void setSource(TextualType value) { this.source = value; } /** * Gets the value of the format property. * * @return possible object is {@link ControlledTermUseType } * */ public ControlledTermUseType getFormat() { return format; } /** * Sets the value of the format property. * * @param value * allowed object is {@link ControlledTermUseType } * */ public void setFormat(ControlledTermUseType value) { this.format = value; } /** * Gets the value of the disseminator property. * * @return possible object is {@link MediaAgentType } * */ public MediaAgentType getDisseminator() { return disseminator; } /** * Sets the value of the disseminator property. * * @param value * allowed object is {@link MediaAgentType } * */ public void setDisseminator(MediaAgentType value) { this.disseminator = value; } /** * Gets the value of the location property. * * @return possible object is {@link PlaceType } * */ public PlaceType getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is {@link PlaceType } * */ public void setLocation(PlaceType value) { this.location = value; } }