// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2014.02.10 at 10:02:26 PM CET // package ietf.params.xml.ns.keyprov.pskc; import java.util.ArrayList; import java.util.List; 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 DeviceInfoType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DeviceInfoType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="SerialNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Model" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="IssueNo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="DeviceBinding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="ExpiryDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="UserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Extensions" type="{urn:ietf:params:xml:ns:keyprov:pskc}ExtensionsType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeviceInfoType", propOrder = { "manufacturer", "serialNo", "model", "issueNo", "deviceBinding", "startDate", "expiryDate", "userId", "extensions" }) public class DeviceInfoType { @XmlElement(name = "Manufacturer") protected String manufacturer; @XmlElement(name = "SerialNo") protected String serialNo; @XmlElement(name = "Model") protected String model; @XmlElement(name = "IssueNo") protected String issueNo; @XmlElement(name = "DeviceBinding") protected String deviceBinding; @XmlElement(name = "StartDate") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlElement(name = "ExpiryDate") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expiryDate; @XmlElement(name = "UserId") protected String userId; @XmlElement(name = "Extensions") protected List<ExtensionsType> extensions; /** * Gets the value of the manufacturer property. * * @return * possible object is * {@link String } * */ public String getManufacturer() { return manufacturer; } /** * Sets the value of the manufacturer property. * * @param value * allowed object is * {@link String } * */ public void setManufacturer(String value) { this.manufacturer = value; } /** * Gets the value of the serialNo property. * * @return * possible object is * {@link String } * */ public String getSerialNo() { return serialNo; } /** * Sets the value of the serialNo property. * * @param value * allowed object is * {@link String } * */ public void setSerialNo(String value) { this.serialNo = value; } /** * Gets the value of the model property. * * @return * possible object is * {@link String } * */ public String getModel() { return model; } /** * Sets the value of the model property. * * @param value * allowed object is * {@link String } * */ public void setModel(String value) { this.model = value; } /** * Gets the value of the issueNo property. * * @return * possible object is * {@link String } * */ public String getIssueNo() { return issueNo; } /** * Sets the value of the issueNo property. * * @param value * allowed object is * {@link String } * */ public void setIssueNo(String value) { this.issueNo = value; } /** * Gets the value of the deviceBinding property. * * @return * possible object is * {@link String } * */ public String getDeviceBinding() { return deviceBinding; } /** * Sets the value of the deviceBinding property. * * @param value * allowed object is * {@link String } * */ public void setDeviceBinding(String value) { this.deviceBinding = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the expiryDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpiryDate() { return expiryDate; } /** * Sets the value of the expiryDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpiryDate(XMLGregorianCalendar value) { this.expiryDate = value; } /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the extensions property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the extensions property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtensions().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ExtensionsType } * * */ public List<ExtensionsType> getExtensions() { if (extensions == null) { extensions = new ArrayList<ExtensionsType>(); } return this.extensions; } }