// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.06.15 at 04:11:53 PM CEST // package at.gv.egiz.moasig; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *
Java class for ExtendedCertificateCheckResultType complex type. * *
The following schema fragment specifies the expected content contained within this class. * *
* <complexType name="ExtendedCertificateCheckResultType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Major" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}IndicationResultType"/>
* <element name="Minor" type="{http://reference.e-government.gv.at/namespace/moa/20020822#}IndicationResultType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ExtendedCertificateCheckResultType", propOrder = {
"major",
"minor"
})
public class ExtendedCertificateCheckResultType {
@XmlElement(name = "Major", required = true)
protected IndicationResultType major;
@XmlElement(name = "Minor")
protected IndicationResultType minor;
/**
* Gets the value of the major property.
*
* @return
* possible object is
* {@link IndicationResultType }
*
*/
public IndicationResultType getMajor() {
return major;
}
/**
* Sets the value of the major property.
*
* @param value
* allowed object is
* {@link IndicationResultType }
*
*/
public void setMajor(IndicationResultType value) {
this.major = value;
}
/**
* Gets the value of the minor property.
*
* @return
* possible object is
* {@link IndicationResultType }
*
*/
public IndicationResultType getMinor() {
return minor;
}
/**
* Sets the value of the minor property.
*
* @param value
* allowed object is
* {@link IndicationResultType }
*
*/
public void setMinor(IndicationResultType value) {
this.minor = value;
}
}