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

net.datastream.schemas.mp_entities.releasedpm_001.ReleasedPM Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_entities.releasedpm_001;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.PERSONID_Type;
import net.datastream.schemas.mp_fields.STATUS_Type;
import net.datastream.schemas.mp_fields.WOID_Type;
import org.openapplications.oagis_segments.DATETIME;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datastream.net/MP_fields}WORKORDERID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}STATUS"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}TARGETDATE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ASSIGNEDTO" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="is_relatedwo" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "workorderid", "status", "targetdate", "assignedto" }) @XmlRootElement(name = "ReleasedPM") public class ReleasedPM { @XmlElement(name = "WORKORDERID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected WOID_Type workorderid; @XmlElement(name = "STATUS", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected STATUS_Type status; @XmlElement(name = "TARGETDATE", namespace = "http://schemas.datastream.net/MP_fields") protected DATETIME targetdate; @XmlElement(name = "ASSIGNEDTO", namespace = "http://schemas.datastream.net/MP_fields") protected PERSONID_Type assignedto; @XmlAttribute(name = "recordid") protected Long recordid; @XmlAttribute(name = "is_relatedwo") protected Boolean is_Relatedwo; /** * Obtient la valeur de la propriété workorderid. * * @return * possible object is * {@link WOID_Type } * */ public WOID_Type getWORKORDERID() { return workorderid; } /** * Définit la valeur de la propriété workorderid. * * @param value * allowed object is * {@link WOID_Type } * */ public void setWORKORDERID(WOID_Type value) { this.workorderid = value; } /** * Obtient la valeur de la propriété status. * * @return * possible object is * {@link STATUS_Type } * */ public STATUS_Type getSTATUS() { return status; } /** * Définit la valeur de la propriété status. * * @param value * allowed object is * {@link STATUS_Type } * */ public void setSTATUS(STATUS_Type value) { this.status = value; } /** * Obtient la valeur de la propriété targetdate. * * @return * possible object is * {@link DATETIME } * */ public DATETIME getTARGETDATE() { return targetdate; } /** * Définit la valeur de la propriété targetdate. * * @param value * allowed object is * {@link DATETIME } * */ public void setTARGETDATE(DATETIME value) { this.targetdate = value; } /** * Obtient la valeur de la propriété assignedto. * * @return * possible object is * {@link PERSONID_Type } * */ public PERSONID_Type getASSIGNEDTO() { return assignedto; } /** * Définit la valeur de la propriété assignedto. * * @param value * allowed object is * {@link PERSONID_Type } * */ public void setASSIGNEDTO(PERSONID_Type value) { this.assignedto = value; } /** * Obtient la valeur de la propriété recordid. * * @return * possible object is * {@link Long } * */ public Long getRecordid() { return recordid; } /** * Définit la valeur de la propriété recordid. * * @param value * allowed object is * {@link Long } * */ public void setRecordid(Long value) { this.recordid = value; } /** * Obtient la valeur de la propriété is_Relatedwo. * * @return * possible object is * {@link Boolean } * */ public boolean isIs_Relatedwo() { if (is_Relatedwo == null) { return false; } else { return is_Relatedwo; } } /** * Définit la valeur de la propriété is_Relatedwo. * * @param value * allowed object is * {@link Boolean } * */ public void setIs_Relatedwo(Boolean value) { this.is_Relatedwo = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy