All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hashmapinc.tempus.witsml.message._120.WMLSUpdateInStore Maven / Gradle / Ivy

Go to download

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 = { "wmLtypeIn", "xmLin", "optionsIn", "capabilitiesIn" }) @XmlRootElement(name = "WMLS_UpdateInStore") public class WMLSUpdateInStore { @XmlElement(name = "WMLtypeIn", required = true, nillable = true) protected String wmLtypeIn; @XmlElement(name = "XMLin", required = true, nillable = true) protected String xmLin; @XmlElement(name = "OptionsIn", required = true, nillable = true) protected String optionsIn; @XmlElement(name = "CapabilitiesIn", required = true, nillable = true) protected String capabilitiesIn; /** * Gets the value of the wmLtypeIn property. * * @return * possible object is * {@link String } * */ public String getWMLtypeIn() { return wmLtypeIn; } /** * Sets the value of the wmLtypeIn property. * * @param value * allowed object is * {@link String } * */ public void setWMLtypeIn(String value) { this.wmLtypeIn = value; } /** * Gets the value of the xmLin property. * * @return * possible object is * {@link String } * */ public String getXMLin() { return xmLin; } /** * Sets the value of the xmLin property. * * @param value * allowed object is * {@link String } * */ public void setXMLin(String value) { this.xmLin = value; } /** * Gets the value of the optionsIn property. * * @return * possible object is * {@link String } * */ public String getOptionsIn() { return optionsIn; } /** * Sets the value of the optionsIn property. * * @param value * allowed object is * {@link String } * */ public void setOptionsIn(String value) { this.optionsIn = value; } /** * Gets the value of the capabilitiesIn property. * * @return * possible object is * {@link String } * */ public String getCapabilitiesIn() { return capabilitiesIn; } /** * Sets the value of the capabilitiesIn property. * * @param value * allowed object is * {@link String } * */ public void setCapabilitiesIn(String value) { this.capabilitiesIn = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy