2015-11-09 04:58:17 +00:00
|
|
|
//
|
2020-07-12 21:55:37 +01:00
|
|
|
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.8-b130911.1802
|
|
|
|
|
// Visite <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
2017-06-08 21:53:29 +01:00
|
|
|
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen.
|
2020-07-12 22:44:22 +01:00
|
|
|
// Generado el: 2020.07.12 a las 10:42:39 PM WEST
|
2015-11-09 04:58:17 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package generated;
|
|
|
|
|
|
2016-10-15 22:40:27 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.List;
|
2015-11-09 04:58:17 +00:00
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
2016-10-15 22:40:27 +01:00
|
|
|
import javax.xml.bind.annotation.XmlSchemaType;
|
2015-11-09 04:58:17 +00:00
|
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Contains PCMCIA card information
|
|
|
|
|
*
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>Clase Java para PCMCIAType complex type.
|
2015-11-09 04:58:17 +00:00
|
|
|
*
|
2017-06-08 21:53:29 +01:00
|
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
2015-11-09 04:58:17 +00:00
|
|
|
*
|
|
|
|
|
* <pre>
|
2020-07-12 21:55:37 +01:00
|
|
|
* <complexType name="PCMCIAType">
|
|
|
|
|
* <complexContent>
|
|
|
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
|
|
|
* <sequence>
|
|
|
|
|
* <element name="CIS" type="{}DumpType"/>
|
|
|
|
|
* <element name="Compliance" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
|
|
|
* <element name="ManufacturerCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
|
|
|
* <element name="CardCode" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" minOccurs="0"/>
|
|
|
|
|
* <element name="Manufacturer" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
|
|
|
* <element name="ProductName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
|
|
|
* <element name="AdditionalInformation" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
|
|
|
|
* </sequence>
|
|
|
|
|
* </restriction>
|
|
|
|
|
* </complexContent>
|
|
|
|
|
* </complexType>
|
2015-11-09 04:58:17 +00:00
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
@XmlType(name = "PCMCIAType", propOrder = {
|
2016-10-15 22:40:27 +01:00
|
|
|
"cis",
|
|
|
|
|
"compliance",
|
|
|
|
|
"manufacturerCode",
|
|
|
|
|
"cardCode",
|
|
|
|
|
"manufacturer",
|
|
|
|
|
"productName",
|
|
|
|
|
"additionalInformation"
|
2015-11-09 04:58:17 +00:00
|
|
|
})
|
|
|
|
|
public class PCMCIAType {
|
|
|
|
|
|
|
|
|
|
@XmlElement(name = "CIS", required = true)
|
|
|
|
|
protected DumpType cis;
|
2016-10-15 22:40:27 +01:00
|
|
|
@XmlElement(name = "Compliance")
|
|
|
|
|
protected String compliance;
|
|
|
|
|
@XmlElement(name = "ManufacturerCode")
|
|
|
|
|
@XmlSchemaType(name = "unsignedShort")
|
|
|
|
|
protected Integer manufacturerCode;
|
|
|
|
|
@XmlElement(name = "CardCode")
|
|
|
|
|
@XmlSchemaType(name = "unsignedShort")
|
|
|
|
|
protected Integer cardCode;
|
|
|
|
|
@XmlElement(name = "Manufacturer")
|
|
|
|
|
protected String manufacturer;
|
|
|
|
|
@XmlElement(name = "ProductName")
|
|
|
|
|
protected String productName;
|
|
|
|
|
@XmlElement(name = "AdditionalInformation")
|
|
|
|
|
protected List<String> additionalInformation;
|
2015-11-09 04:58:17 +00:00
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad cis.
|
2015-11-09 04:58:17 +00:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link DumpType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public DumpType getCIS() {
|
|
|
|
|
return cis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad cis.
|
2015-11-09 04:58:17 +00:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link DumpType }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setCIS(DumpType value) {
|
|
|
|
|
this.cis = value;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-15 22:40:27 +01:00
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad compliance.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getCompliance() {
|
|
|
|
|
return compliance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad compliance.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setCompliance(String value) {
|
|
|
|
|
this.compliance = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad manufacturerCode.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link Integer }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public Integer getManufacturerCode() {
|
|
|
|
|
return manufacturerCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad manufacturerCode.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link Integer }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setManufacturerCode(Integer value) {
|
|
|
|
|
this.manufacturerCode = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad cardCode.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link Integer }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public Integer getCardCode() {
|
|
|
|
|
return cardCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad cardCode.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link Integer }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setCardCode(Integer value) {
|
|
|
|
|
this.cardCode = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad manufacturer.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getManufacturer() {
|
|
|
|
|
return manufacturer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad manufacturer.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setManufacturer(String value) {
|
|
|
|
|
this.manufacturer = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Obtiene el valor de la propiedad productName.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
* possible object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public String getProductName() {
|
|
|
|
|
return productName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2017-06-08 21:53:29 +01:00
|
|
|
* Define el valor de la propiedad productName.
|
2016-10-15 22:40:27 +01:00
|
|
|
*
|
|
|
|
|
* @param value
|
|
|
|
|
* allowed object is
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public void setProductName(String value) {
|
|
|
|
|
this.productName = value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the value of the additionalInformation 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 additionalInformation property.
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* For example, to add a new item, do as follows:
|
|
|
|
|
* <pre>
|
|
|
|
|
* getAdditionalInformation().add(newItem);
|
|
|
|
|
* </pre>
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* Objects of the following type(s) are allowed in the list
|
|
|
|
|
* {@link String }
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public List<String> getAdditionalInformation() {
|
|
|
|
|
if (additionalInformation == null) {
|
|
|
|
|
additionalInformation = new ArrayList<String>();
|
|
|
|
|
}
|
|
|
|
|
return this.additionalInformation;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-09 04:58:17 +00:00
|
|
|
}
|