net.datastream.schemas.mp_entities.entitysafetydefault_001.SafetyReviewDetail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eam-wshub-proxyclient Show documentation
Show all versions of eam-wshub-proxyclient Show documentation
JAX-WS aisws aisws generated from Infor EAM Web Services Toolkit WSDLs.
package net.datastream.schemas.mp_entities.entitysafetydefault_001;
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;
import net.datastream.schemas.mp_fields.ESIGNATURE_Type;
import org.openapplications.oagis_segments.DATETIME;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}REVIEWEDBYESIGN" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DATEREVIEWED" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DATEREVIEWREQUIRED" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"reviewedbyesign",
"datereviewed",
"datereviewrequired"
})
@XmlRootElement(name = "SafetyReviewDetail")
public class SafetyReviewDetail {
@XmlElement(name = "REVIEWEDBYESIGN", namespace = "http://schemas.datastream.net/MP_fields")
protected ESIGNATURE_Type reviewedbyesign;
@XmlElement(name = "DATEREVIEWED", namespace = "http://schemas.datastream.net/MP_fields")
protected DATETIME datereviewed;
@XmlElement(name = "DATEREVIEWREQUIRED", namespace = "http://schemas.datastream.net/MP_fields")
protected DATETIME datereviewrequired;
/**
* Gets the value of the reviewedbyesign property.
*
* @return
* possible object is
* {@link ESIGNATURE_Type }
*
*/
public ESIGNATURE_Type getREVIEWEDBYESIGN() {
return reviewedbyesign;
}
/**
* Sets the value of the reviewedbyesign property.
*
* @param value
* allowed object is
* {@link ESIGNATURE_Type }
*
*/
public void setREVIEWEDBYESIGN(ESIGNATURE_Type value) {
this.reviewedbyesign = value;
}
/**
* Gets the value of the datereviewed property.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getDATEREVIEWED() {
return datereviewed;
}
/**
* Sets the value of the datereviewed property.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setDATEREVIEWED(DATETIME value) {
this.datereviewed = value;
}
/**
* Gets the value of the datereviewrequired property.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getDATEREVIEWREQUIRED() {
return datereviewrequired;
}
/**
* Sets the value of the datereviewrequired property.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setDATEREVIEWREQUIRED(DATETIME value) {
this.datereviewrequired = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy