com.hashmapinc.tempus.witsml.message._120.WMLSGetBaseMsg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of witsml-client Show documentation
Show all versions of witsml-client Show documentation
This library assists in querying a WITSML server for 1.3.1.1 data or 1.4.1.1 data
The newest version!
package com.hashmapinc.tempus.witsml.message._120;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"returnValueIn"
})
@XmlRootElement(name = "WMLS_GetBaseMsg")
public class WMLSGetBaseMsg {
@XmlElement(name = "ReturnValueIn", required = true, type = Short.class, nillable = true)
protected Short returnValueIn;
/**
* Gets the value of the returnValueIn property.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getReturnValueIn() {
return returnValueIn;
}
/**
* Sets the value of the returnValueIn property.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setReturnValueIn(Short value) {
this.returnValueIn = value;
}
}