com.hashmapinc.tempus.WitsmlObjects.v1411.CsRefWellboreTrajectory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WitsmlObjects Show documentation
Show all versions of WitsmlObjects Show documentation
This library assists in serializing and deserializing WITSML 1.3.1.1 and 1.4.1.1 Objects
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.06.26 at 03:00:38 PM CDT
//
package com.hashmapinc.tempus.WitsmlObjects.v1411;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* A reference to a trajectory in a wellbore.
* The trajectory may be defined within the context of another wellbore.
* This value represents a foreign key from one element to another.
*
* Java class for cs_refWellboreTrajectory complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cs_refWellboreTrajectory", propOrder = {
"trajectoryReference",
"wellboreParent"
})
public class CsRefWellboreTrajectory {
@XmlElement(required = true)
protected RefNameString trajectoryReference;
protected RefNameString wellboreParent;
/**
* Gets the value of the trajectoryReference property.
*
* @return
* possible object is
* {@link RefNameString }
*
*/
public RefNameString getTrajectoryReference() {
return trajectoryReference;
}
/**
* Sets the value of the trajectoryReference property.
*
* @param value
* allowed object is
* {@link RefNameString }
*
*/
public void setTrajectoryReference(RefNameString value) {
this.trajectoryReference = value;
}
/**
* Gets the value of the wellboreParent property.
*
* @return
* possible object is
* {@link RefNameString }
*
*/
public RefNameString getWellboreParent() {
return wellboreParent;
}
/**
* Sets the value of the wellboreParent property.
*
* @param value
* allowed object is
* {@link RefNameString }
*
*/
public void setWellboreParent(RefNameString value) {
this.wellboreParent = value;
}
}