org.uddi.api_v3.OperationalInfo Maven / Gradle / Ivy
package org.uddi.api_v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for operationalInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="operationalInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="created" type="{urn:uddi-org:api_v3}timeInstant" minOccurs="0"/>
* <element name="modified" type="{urn:uddi-org:api_v3}timeInstant" minOccurs="0"/>
* <element name="modifiedIncludingChildren" type="{urn:uddi-org:api_v3}timeInstant" minOccurs="0"/>
* <element ref="{urn:uddi-org:api_v3}nodeID" minOccurs="0"/>
* <element ref="{urn:uddi-org:api_v3}authorizedName" minOccurs="0"/>
* </sequence>
* <attribute name="entityKey" use="required" type="{urn:uddi-org:api_v3}uddiKey" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "operationalInfo", propOrder = {
"created",
"modified",
"modifiedIncludingChildren",
"nodeID",
"authorizedName"
})
public class OperationalInfo {
protected XMLGregorianCalendar created;
protected XMLGregorianCalendar modified;
protected XMLGregorianCalendar modifiedIncludingChildren;
protected String nodeID;
protected String authorizedName;
@XmlAttribute(required = true)
protected String entityKey;
/**
* Gets the value of the created property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreated() {
return created;
}
/**
* Sets the value of the created property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreated(XMLGregorianCalendar value) {
this.created = value;
}
/**
* Gets the value of the modified property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getModified() {
return modified;
}
/**
* Sets the value of the modified property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setModified(XMLGregorianCalendar value) {
this.modified = value;
}
/**
* Gets the value of the modifiedIncludingChildren property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getModifiedIncludingChildren() {
return modifiedIncludingChildren;
}
/**
* Sets the value of the modifiedIncludingChildren property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setModifiedIncludingChildren(XMLGregorianCalendar value) {
this.modifiedIncludingChildren = value;
}
/**
* Gets the value of the nodeID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNodeID() {
return nodeID;
}
/**
* Sets the value of the nodeID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNodeID(String value) {
this.nodeID = value;
}
/**
* Gets the value of the authorizedName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthorizedName() {
return authorizedName;
}
/**
* Sets the value of the authorizedName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthorizedName(String value) {
this.authorizedName = value;
}
/**
* Gets the value of the entityKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityKey() {
return entityKey;
}
/**
* Sets the value of the entityKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityKey(String value) {
this.entityKey = value;
}
}