// // 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.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for ServiceHistoryInstanceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ServiceHistoryInstanceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://uri.etsi.org/02231/v2#}ServiceTypeIdentifier"/> * <element name="ServiceName" type="{http://uri.etsi.org/02231/v2#}InternationalNamesType"/> * <element ref="{http://uri.etsi.org/02231/v2#}ServiceDigitalIdentity"/> * <element ref="{http://uri.etsi.org/02231/v2#}ServiceStatus"/> * <element name="StatusStartingTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="ServiceInformationExtensions" type="{http://uri.etsi.org/02231/v2#}ExtensionsListType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceHistoryInstanceType", propOrder = { "serviceTypeIdentifier", "serviceName", "serviceDigitalIdentity", "serviceStatus", "statusStartingTime", "serviceInformationExtensions" }) public class ServiceHistoryInstanceType implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "ServiceTypeIdentifier", required = true) protected String serviceTypeIdentifier; @XmlElement(name = "ServiceName", required = true) protected InternationalNamesType serviceName; @XmlElement(name = "ServiceDigitalIdentity", required = true) protected DigitalIdentityListType serviceDigitalIdentity; @XmlElement(name = "ServiceStatus", required = true) protected String serviceStatus; @XmlElement(name = "StatusStartingTime", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar statusStartingTime; @XmlElement(name = "ServiceInformationExtensions") protected ExtensionsListType serviceInformationExtensions; /** * Gets the value of the serviceTypeIdentifier property. * * @return * possible object is * {@link String } * */ public String getServiceTypeIdentifier() { return serviceTypeIdentifier; } /** * Sets the value of the serviceTypeIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setServiceTypeIdentifier(String value) { this.serviceTypeIdentifier = value; } /** * Gets the value of the serviceName property. * * @return * possible object is * {@link InternationalNamesType } * */ public InternationalNamesType getServiceName() { return serviceName; } /** * Sets the value of the serviceName property. * * @param value * allowed object is * {@link InternationalNamesType } * */ public void setServiceName(InternationalNamesType value) { this.serviceName = value; } /** * Gets the value of the serviceDigitalIdentity property. * * @return * possible object is * {@link DigitalIdentityListType } * */ public DigitalIdentityListType getServiceDigitalIdentity() { return serviceDigitalIdentity; } /** * Sets the value of the serviceDigitalIdentity property. * * @param value * allowed object is * {@link DigitalIdentityListType } * */ public void setServiceDigitalIdentity(DigitalIdentityListType value) { this.serviceDigitalIdentity = value; } /** * Gets the value of the serviceStatus property. * * @return * possible object is * {@link String } * */ public String getServiceStatus() { return serviceStatus; } /** * Sets the value of the serviceStatus property. * * @param value * allowed object is * {@link String } * */ public void setServiceStatus(String value) { this.serviceStatus = value; } /** * Gets the value of the statusStartingTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStatusStartingTime() { return statusStartingTime; } /** * Sets the value of the statusStartingTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStatusStartingTime(XMLGregorianCalendar value) { this.statusStartingTime = value; } /** * Gets the value of the serviceInformationExtensions property. * * @return * possible object is * {@link ExtensionsListType } * */ public ExtensionsListType getServiceInformationExtensions() { return serviceInformationExtensions; } /** * Sets the value of the serviceInformationExtensions property. * * @param value * allowed object is * {@link ExtensionsListType } * */ public void setServiceInformationExtensions(ExtensionsListType value) { this.serviceInformationExtensions = value; } }