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

net.datastream.schemas.mp_entities.inspectionpoint_001.InspectionPoint Maven / Gradle / Ivy


package net.datastream.schemas.mp_entities.inspectionpoint_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.INSPECTIONPOINTID_Type;
import net.datastream.schemas.mp_fields.StandardUserDefinedFields;


/**
 * 

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}INSPECTIONPOINTID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}StandardUserDefinedFields" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="has_department_security" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "inspectionpointid", "standardUserDefinedFields" }) @XmlRootElement(name = "InspectionPoint") public class InspectionPoint { @XmlElement(name = "INSPECTIONPOINTID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected INSPECTIONPOINTID_Type inspectionpointid; @XmlElement(name = "StandardUserDefinedFields", namespace = "http://schemas.datastream.net/MP_fields") protected StandardUserDefinedFields standardUserDefinedFields; @XmlAttribute(name = "recordid") protected Long recordid; @XmlAttribute(name = "has_department_security") protected String has_Department_Security; /** * Gets the value of the inspectionpointid property. * * @return * possible object is * {@link INSPECTIONPOINTID_Type } * */ public INSPECTIONPOINTID_Type getINSPECTIONPOINTID() { return inspectionpointid; } /** * Sets the value of the inspectionpointid property. * * @param value * allowed object is * {@link INSPECTIONPOINTID_Type } * */ public void setINSPECTIONPOINTID(INSPECTIONPOINTID_Type value) { this.inspectionpointid = 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; } /** * Gets the value of the has_Department_Security property. * * @return * possible object is * {@link String } * */ public String getHas_Department_Security() { return has_Department_Security; } /** * Sets the value of the has_Department_Security property. * * @param value * allowed object is * {@link String } * */ public void setHas_Department_Security(String value) { this.has_Department_Security = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy