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

net.datastream.schemas.mp_entities.aspect_001.Aspect Maven / Gradle / Ivy

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

package net.datastream.schemas.mp_entities.aspect_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.ASPECTID_Type;
import net.datastream.schemas.mp_fields.CLASSID_Type;
import net.datastream.schemas.mp_fields.StandardUserDefinedFields;
import net.datastream.schemas.mp_fields.USERDEFINEDAREA;


/**
 * 

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}ASPECTID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}CLASSID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}TIMEDEPENDENCYID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}RANDOMRESULT" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}OUTOFSERVICE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}USERDEFINEDAREA" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}StandardUserDefinedFields" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "aspectid", "classid", "timedependencyid", "randomresult", "outofservice", "userdefinedarea", "standardUserDefinedFields" }) @XmlRootElement(name = "Aspect") public class Aspect { @XmlElement(name = "ASPECTID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected ASPECTID_Type aspectid; @XmlElement(name = "CLASSID", namespace = "http://schemas.datastream.net/MP_fields") protected CLASSID_Type classid; @XmlElement(name = "TIMEDEPENDENCYID", namespace = "http://schemas.datastream.net/MP_fields") protected String timedependencyid; @XmlElement(name = "RANDOMRESULT", namespace = "http://schemas.datastream.net/MP_fields") protected String randomresult; @XmlElement(name = "OUTOFSERVICE", namespace = "http://schemas.datastream.net/MP_fields", defaultValue = "false") protected String outofservice; @XmlElement(name = "USERDEFINEDAREA", namespace = "http://schemas.datastream.net/MP_fields") protected USERDEFINEDAREA userdefinedarea; @XmlElement(name = "StandardUserDefinedFields", namespace = "http://schemas.datastream.net/MP_fields") protected StandardUserDefinedFields standardUserDefinedFields; @XmlAttribute(name = "recordid") protected Long recordid; /** * Gets the value of the aspectid property. * * @return * possible object is * {@link ASPECTID_Type } * */ public ASPECTID_Type getASPECTID() { return aspectid; } /** * Sets the value of the aspectid property. * * @param value * allowed object is * {@link ASPECTID_Type } * */ public void setASPECTID(ASPECTID_Type value) { this.aspectid = value; } /** * Gets the value of the classid property. * * @return * possible object is * {@link CLASSID_Type } * */ public CLASSID_Type getCLASSID() { return classid; } /** * Sets the value of the classid property. * * @param value * allowed object is * {@link CLASSID_Type } * */ public void setCLASSID(CLASSID_Type value) { this.classid = value; } /** * Gets the value of the timedependencyid property. * * @return * possible object is * {@link String } * */ public String getTIMEDEPENDENCYID() { return timedependencyid; } /** * Sets the value of the timedependencyid property. * * @param value * allowed object is * {@link String } * */ public void setTIMEDEPENDENCYID(String value) { this.timedependencyid = value; } /** * Gets the value of the randomresult property. * * @return * possible object is * {@link String } * */ public String getRANDOMRESULT() { return randomresult; } /** * Sets the value of the randomresult property. * * @param value * allowed object is * {@link String } * */ public void setRANDOMRESULT(String value) { this.randomresult = value; } /** * Gets the value of the outofservice property. * * @return * possible object is * {@link String } * */ public String getOUTOFSERVICE() { return outofservice; } /** * Sets the value of the outofservice property. * * @param value * allowed object is * {@link String } * */ public void setOUTOFSERVICE(String value) { this.outofservice = value; } /** * Gets the value of the userdefinedarea property. * * @return * possible object is * {@link USERDEFINEDAREA } * */ public USERDEFINEDAREA getUSERDEFINEDAREA() { return userdefinedarea; } /** * Sets the value of the userdefinedarea property. * * @param value * allowed object is * {@link USERDEFINEDAREA } * */ public void setUSERDEFINEDAREA(USERDEFINEDAREA value) { this.userdefinedarea = value; } /** * Gets the value of the standardUserDefinedFields property. * * @return * possible object is * {@link StandardUserDefinedFields } * */ public StandardUserDefinedFields getStandardUserDefinedFields() { return standardUserDefinedFields; } /** * Sets the value of the standardUserDefinedFields property. * * @param value * allowed object is * {@link StandardUserDefinedFields } * */ public void setStandardUserDefinedFields(StandardUserDefinedFields value) { this.standardUserDefinedFields = value; } /** * Gets the value of the recordid property. * * @return * possible object is * {@link Long } * */ public Long getRecordid() { return recordid; } /** * Sets the value of the recordid property. * * @param value * allowed object is * {@link Long } * */ public void setRecordid(Long value) { this.recordid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy