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

com.bytekast.netsuite.client.ManufacturingOperationTaskSearch Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ManufacturingOperationTaskSearch complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ManufacturingOperationTaskSearch">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRecord">
 *       <sequence>
 *         <element name="basic" type="{urn:common_2017_1.platform.webservices.netsuite.com}ManufacturingOperationTaskSearchBasic" minOccurs="0"/>
 *         <element name="predecessorJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}ManufacturingOperationTaskSearchBasic" minOccurs="0"/>
 *         <element name="userJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}EmployeeSearchBasic" minOccurs="0"/>
 *         <element name="workOrderJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}TransactionSearchBasic" minOccurs="0"/>
 *         <element name="customSearchJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}CustomSearchJoin" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ManufacturingOperationTaskSearch", namespace = "urn:supplychain_2017_1.lists.webservices.netsuite.com", propOrder = { "basic", "predecessorJoin", "userJoin", "workOrderJoin", "customSearchJoin" }) public class ManufacturingOperationTaskSearch extends SearchRecord implements Serializable { protected ManufacturingOperationTaskSearchBasic basic; protected ManufacturingOperationTaskSearchBasic predecessorJoin; protected EmployeeSearchBasic userJoin; protected TransactionSearchBasic workOrderJoin; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link ManufacturingOperationTaskSearchBasic } * */ public ManufacturingOperationTaskSearchBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link ManufacturingOperationTaskSearchBasic } * */ public void setBasic(ManufacturingOperationTaskSearchBasic value) { this.basic = value; } /** * Gets the value of the predecessorJoin property. * * @return * possible object is * {@link ManufacturingOperationTaskSearchBasic } * */ public ManufacturingOperationTaskSearchBasic getPredecessorJoin() { return predecessorJoin; } /** * Sets the value of the predecessorJoin property. * * @param value * allowed object is * {@link ManufacturingOperationTaskSearchBasic } * */ public void setPredecessorJoin(ManufacturingOperationTaskSearchBasic value) { this.predecessorJoin = value; } /** * Gets the value of the userJoin property. * * @return * possible object is * {@link EmployeeSearchBasic } * */ public EmployeeSearchBasic getUserJoin() { return userJoin; } /** * Sets the value of the userJoin property. * * @param value * allowed object is * {@link EmployeeSearchBasic } * */ public void setUserJoin(EmployeeSearchBasic value) { this.userJoin = value; } /** * Gets the value of the workOrderJoin property. * * @return * possible object is * {@link TransactionSearchBasic } * */ public TransactionSearchBasic getWorkOrderJoin() { return workOrderJoin; } /** * Sets the value of the workOrderJoin property. * * @param value * allowed object is * {@link TransactionSearchBasic } * */ public void setWorkOrderJoin(TransactionSearchBasic value) { this.workOrderJoin = value; } /** * Gets the value of the customSearchJoin property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the customSearchJoin property. * *

* For example, to add a new item, do as follows: *

     *    getCustomSearchJoin().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CustomSearchJoin } * * */ public List getCustomSearchJoin() { if (customSearchJoin == null) { customSearchJoin = new ArrayList(); } return this.customSearchJoin; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy