128 lines
2.9 KiB
Java
128 lines
2.9 KiB
Java
//
|
|
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
|
// 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.10.12 at 12:03:44 AM 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
|
|
*
|
|
* <p>Java class for SecureDigitalType complex type.
|
|
*
|
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
|
*
|
|
* <pre>
|
|
* <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>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@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;
|
|
|
|
/**
|
|
* Gets the value of the cid property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public DumpType getCID() {
|
|
return cid;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the cid property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public void setCID(DumpType value) {
|
|
this.cid = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the csd property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public DumpType getCSD() {
|
|
return csd;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the csd property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public void setCSD(DumpType value) {
|
|
this.csd = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value of the extendedCSD property.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public DumpType getExtendedCSD() {
|
|
return extendedCSD;
|
|
}
|
|
|
|
/**
|
|
* Sets the value of the extendedCSD property.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link DumpType }
|
|
*
|
|
*/
|
|
public void setExtendedCSD(DumpType value) {
|
|
this.extendedCSD = value;
|
|
}
|
|
|
|
}
|