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

net.datastream.schemas.mp_fields.STANDWOACTID Maven / Gradle / Ivy

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

package net.datastream.schemas.mp_fields;

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;


/**
 * 

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}STANDARDWO"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ACTIVITYCODE"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ACTIVITYNOTE" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "standardwo", "activitycode", "activitynote" }) @XmlRootElement(name = "STANDWOACTID") public class STANDWOACTID { @XmlElement(name = "STANDARDWO", required = true) protected STDWOID_Type standardwo; @XmlElement(name = "ACTIVITYCODE", required = true) protected ACTIVITYCODE activitycode; @XmlElement(name = "ACTIVITYNOTE") protected String activitynote; /** * Gets the value of the standardwo property. * * @return * possible object is * {@link STDWOID_Type } * */ public STDWOID_Type getSTANDARDWO() { return standardwo; } /** * Sets the value of the standardwo property. * * @param value * allowed object is * {@link STDWOID_Type } * */ public void setSTANDARDWO(STDWOID_Type value) { this.standardwo = value; } /** * Gets the value of the activitycode property. * * @return * possible object is * {@link ACTIVITYCODE } * */ public ACTIVITYCODE getACTIVITYCODE() { return activitycode; } /** * Sets the value of the activitycode property. * * @param value * allowed object is * {@link ACTIVITYCODE } * */ public void setACTIVITYCODE(ACTIVITYCODE value) { this.activitycode = value; } /** * Gets the value of the activitynote property. * * @return * possible object is * {@link String } * */ public String getACTIVITYNOTE() { return activitynote; } /** * Sets the value of the activitynote property. * * @param value * allowed object is * {@link String } * */ public void setACTIVITYNOTE(String value) { this.activitynote = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy