energyml.common2_1.DataObjectReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.common2_1;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* It only applies for Energistics data object.
*
* Java class for DataObjectReference complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DataObjectReference">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ContentType" type="energyml.common2_1.String2000"/>
* <element name="Title" type="energyml.common2_1.String2000"/>
* <element name="Uuid" type="energyml.common2_1.UuidString"/>
* <element name="UuidAuthority" type="energyml.common2_1.String64" minOccurs="0"/>
* <element name="Uri" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="VersionString" type="energyml.common2_1.String64" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataObjectReference", propOrder = {
"contentType",
"title",
"uuid",
"uuidAuthority",
"uri",
"versionString"
})
public class DataObjectReference {
@XmlElement(name = "ContentType", required = true)
protected String contentType;
@XmlElement(name = "Title", required = true)
protected String title;
@XmlElement(name = "Uuid", required = true)
protected String uuid;
@XmlElement(name = "UuidAuthority")
protected String uuidAuthority;
@XmlElement(name = "Uri")
@XmlSchemaType(name = "anyURI")
protected String uri;
@XmlElement(name = "VersionString")
protected String versionString;
/**
* Gets the value of the contentType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContentType() {
return contentType;
}
/**
* Sets the value of the contentType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContentType(String value) {
this.contentType = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
/**
* Gets the value of the uuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUuid() {
return uuid;
}
/**
* Sets the value of the uuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUuid(String value) {
this.uuid = value;
}
/**
* Gets the value of the uuidAuthority property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUuidAuthority() {
return uuidAuthority;
}
/**
* Sets the value of the uuidAuthority property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUuidAuthority(String value) {
this.uuidAuthority = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUri() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUri(String value) {
this.uri = value;
}
/**
* Gets the value of the versionString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionString() {
return versionString;
}
/**
* Sets the value of the versionString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionString(String value) {
this.versionString = value;
}
}