![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.ImageStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:39 PM UTC
//
package uk.org.siri.siri20;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* Type for image.
*
* Java class for ImageStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ImageStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element name="ImageRef" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
* <element name="ImageBinary" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </choice>
* <element name="ImageContent" type="{http://www.siri.org.uk/siri}ImageContentEnumeration" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ImageStructure", propOrder = {
"imageBinary",
"imageRef",
"imageContent"
})
@XmlSeeAlso({
uk.org.siri.siri20.PtSituationElement.Images.Image.class
})
public class ImageStructure
implements Serializable
{
@XmlElement(name = "ImageBinary")
protected byte[] imageBinary;
@XmlElement(name = "ImageRef")
@XmlSchemaType(name = "anyURI")
protected String imageRef;
@XmlElement(name = "ImageContent")
@XmlSchemaType(name = "NMTOKEN")
protected ImageContentEnumeration imageContent;
/**
* Gets the value of the imageBinary property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getImageBinary() {
return imageBinary;
}
/**
* Sets the value of the imageBinary property.
*
* @param value
* allowed object is
* byte[]
*/
public void setImageBinary(byte[] value) {
this.imageBinary = value;
}
/**
* Gets the value of the imageRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getImageRef() {
return imageRef;
}
/**
* Sets the value of the imageRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setImageRef(String value) {
this.imageRef = value;
}
/**
* Gets the value of the imageContent property.
*
* @return
* possible object is
* {@link ImageContentEnumeration }
*
*/
public ImageContentEnumeration getImageContent() {
return imageContent;
}
/**
* Sets the value of the imageContent property.
*
* @param value
* allowed object is
* {@link ImageContentEnumeration }
*
*/
public void setImageContent(ImageContentEnumeration value) {
this.imageContent = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy