// // 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 http://java.sun.com/xml/jaxb // Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. // Generado el: 2017.06.08 a las 09:53:11 PM WEST // package generated; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Contains SD/MMC device information * *

Clase Java para SecureDigitalType complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="SecureDigitalType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CID" type="{}DumpType"/>
 *         <element name="CSD" type="{}DumpType" minOccurs="0"/>
 *         <element name="ExtendedCSD" type="{}DumpType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecureDigitalType", propOrder = { "cid", "csd", "extendedCSD" }) public class SecureDigitalType { @XmlElement(name = "CID", required = true) protected DumpType cid; @XmlElement(name = "CSD") protected DumpType csd; @XmlElement(name = "ExtendedCSD") protected DumpType extendedCSD; /** * Obtiene el valor de la propiedad cid. * * @return * possible object is * {@link DumpType } * */ public DumpType getCID() { return cid; } /** * Define el valor de la propiedad cid. * * @param value * allowed object is * {@link DumpType } * */ public void setCID(DumpType value) { this.cid = value; } /** * Obtiene el valor de la propiedad csd. * * @return * possible object is * {@link DumpType } * */ public DumpType getCSD() { return csd; } /** * Define el valor de la propiedad csd. * * @param value * allowed object is * {@link DumpType } * */ public void setCSD(DumpType value) { this.csd = value; } /** * Obtiene el valor de la propiedad extendedCSD. * * @return * possible object is * {@link DumpType } * */ public DumpType getExtendedCSD() { return extendedCSD; } /** * Define el valor de la propiedad extendedCSD. * * @param value * allowed object is * {@link DumpType } * */ public void setExtendedCSD(DumpType value) { this.extendedCSD = value; } }