AddNumbers.java
package org.apache.cxf.systest.ws.addr_feature;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for addNumbers complex type</p>.
*
* <p>The following schema fragment specifies the expected content contained within this class.</p>
*
* <pre>{@code
* <complexType name="addNumbers">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="number1" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="number2" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "addNumbers", propOrder = {
"number1",
"number2"
})
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
public class AddNumbers {
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
protected int number1;
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
protected int number2;
/**
* Gets the value of the number1 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
public int getNumber1() {
return number1;
}
/**
* Sets the value of the number1 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
public void setNumber1(int value) {
this.number1 = value;
}
/**
* Gets the value of the number2 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
public int getNumber2() {
return number2;
}
/**
* Sets the value of the number2 property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2025-06-13T06:28:48Z")
public void setNumber2(int value) {
this.number2 = value;
}
}