
org.example.schema.doubleit.DoubleItResponse Maven / Gradle / Ivy
package org.example.schema.doubleit;
import jakarta.annotation.Generated;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"doubledNumber"
})
@XmlRootElement(name = "DoubleItResponse")
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:44:44-05:00")
public class DoubleItResponse {
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:44:44-05:00")
protected int doubledNumber;
/**
* Gets the value of the doubledNumber property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:44:44-05:00")
public int getDoubledNumber() {
return doubledNumber;
}
/**
* Sets the value of the doubledNumber property.
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v4.0.5", date = "2024-12-09T12:44:44-05:00")
public void setDoubledNumber(int value) {
this.doubledNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy