// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // 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: 2016.08.26 at 02:35:27 PM CEST // package eu.europa.esig.jaxb.tsl; 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 AdditionalServiceInformationType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AdditionalServiceInformationType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="URI" type="{http://uri.etsi.org/02231/v2#}NonEmptyMultiLangURIType"/> * <element name="InformationValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="OtherInformation" type="{http://uri.etsi.org/02231/v2#}AnyType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AdditionalServiceInformationType", propOrder = { "uri", "informationValue", "otherInformation" }) public class AdditionalServiceInformationType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "URI", required = true) protected NonEmptyMultiLangURIType uri; @XmlElement(name = "InformationValue") protected String informationValue; @XmlElement(name = "OtherInformation") protected AnyType otherInformation; /** * Gets the value of the uri property. * * @return * possible object is * {@link NonEmptyMultiLangURIType } * */ public NonEmptyMultiLangURIType getURI() { return uri; } /** * Sets the value of the uri property. * * @param value * allowed object is * {@link NonEmptyMultiLangURIType } * */ public void setURI(NonEmptyMultiLangURIType value) { this.uri = value; } /** * Gets the value of the informationValue property. * * @return * possible object is * {@link String } * */ public String getInformationValue() { return informationValue; } /** * Sets the value of the informationValue property. * * @param value * allowed object is * {@link String } * */ public void setInformationValue(String value) { this.informationValue = value; } /** * Gets the value of the otherInformation property. * * @return * possible object is * {@link AnyType } * */ public AnyType getOtherInformation() { return otherInformation; } /** * Sets the value of the otherInformation property. * * @param value * allowed object is * {@link AnyType } * */ public void setOtherInformation(AnyType value) { this.otherInformation = value; } }