com.glookast.api.capture.info.ResponseInteger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-capture-info Show documentation
Show all versions of api-capture-info Show documentation
Generated artifacts used for interfacing with Glookast Products
The newest version!
package com.glookast.api.capture.info;
import java.io.Serializable;
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 ResponseInteger complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResponseInteger">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="return" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResponseInteger", propOrder = {
"_return"
})
public class ResponseInteger implements Serializable
{
@XmlElement(name = "return")
protected int _return;
/**
* Default no-arg constructor
*
*/
public ResponseInteger() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public ResponseInteger(final int _return) {
this._return = _return;
}
/**
* Gets the value of the return property.
*
*/
public int getReturn() {
return _return;
}
/**
* Sets the value of the return property.
*
*/
public void setReturn(int value) {
this._return = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy