
org.example.schema.doubleit.DoubleItFault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-systests-ws-security Show documentation
Show all versions of cxf-systests-ws-security Show documentation
Apache CXF WS-Security System Tests
package org.example.schema.doubleit;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="minor" type="{http://www.w3.org/2001/XMLSchema}short"/>
* <element name="major" type="{http://www.w3.org/2001/XMLSchema}short"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"minor",
"major"
})
@XmlRootElement(name = "DoubleItFault")
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
public class DoubleItFault {
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
protected short minor;
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
protected short major;
/**
* Gets the value of the minor property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
public short getMinor() {
return minor;
}
/**
* Sets the value of the minor property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
public void setMinor(short value) {
this.minor = value;
}
/**
* Gets the value of the major property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
public short getMajor() {
return major;
}
/**
* Sets the value of the major property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-03-23T02:02:47-04:00", comments = "JAXB RI v2.2.11")
public void setMajor(short value) {
this.major = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy