// // 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 java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for MediaLocatorType complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType name="MediaLocatorType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="MediaUri" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> * <element name="StreamID" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MediaLocatorType", propOrder = { "mediaUri", "streamID" }) @XmlSeeAlso({ TemporalSegmentLocatorType.class, ImageLocatorType.class }) public class MediaLocatorType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "MediaUri", required = true) @XmlSchemaType(name = "anyURI") protected String mediaUri; @XmlElement(name = "StreamID") @XmlSchemaType(name = "nonNegativeInteger") protected BigInteger streamID; /** * Gets the value of the mediaUri property. * * @return possible object is {@link String } * */ public String getMediaUri() { return mediaUri; } /** * Sets the value of the mediaUri property. * * @param value * allowed object is {@link String } * */ public void setMediaUri(String value) { this.mediaUri = value; } /** * Gets the value of the streamID property. * * @return possible object is {@link BigInteger } * */ public BigInteger getStreamID() { return streamID; } /** * Sets the value of the streamID property. * * @param value * allowed object is {@link BigInteger } * */ public void setStreamID(BigInteger value) { this.streamID = value; } }