
tsg.ns.wsdl.coop.ItemSupplyPlanSearchRow Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ItemSupplyPlanSearchRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ItemSupplyPlanSearchRow">
* <complexContent>
* <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRow">
* <sequence>
* <element name="basic" type="{urn:common_2023_1.platform.webservices.netsuite.com}ItemSupplyPlanSearchRowBasic" minOccurs="0"/>
* <element name="itemJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}ItemSearchRowBasic" minOccurs="0"/>
* <element name="locationJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}LocationSearchRowBasic" minOccurs="0"/>
* <element name="userJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
* <element name="customSearchJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}CustomSearchRowBasic" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ItemSupplyPlanSearchRow", namespace = "urn:demandplanning_2023_1.transactions.webservices.netsuite.com", propOrder = {
"basic",
"itemJoin",
"locationJoin",
"userJoin",
"customSearchJoin"
})
public class ItemSupplyPlanSearchRow
extends SearchRow
{
protected ItemSupplyPlanSearchRowBasic basic;
protected ItemSearchRowBasic itemJoin;
protected LocationSearchRowBasic locationJoin;
protected EmployeeSearchRowBasic userJoin;
protected List customSearchJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link ItemSupplyPlanSearchRowBasic }
*
*/
public ItemSupplyPlanSearchRowBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link ItemSupplyPlanSearchRowBasic }
*
*/
public void setBasic(ItemSupplyPlanSearchRowBasic value) {
this.basic = value;
}
/**
* Gets the value of the itemJoin property.
*
* @return
* possible object is
* {@link ItemSearchRowBasic }
*
*/
public ItemSearchRowBasic getItemJoin() {
return itemJoin;
}
/**
* Sets the value of the itemJoin property.
*
* @param value
* allowed object is
* {@link ItemSearchRowBasic }
*
*/
public void setItemJoin(ItemSearchRowBasic value) {
this.itemJoin = value;
}
/**
* Gets the value of the locationJoin property.
*
* @return
* possible object is
* {@link LocationSearchRowBasic }
*
*/
public LocationSearchRowBasic getLocationJoin() {
return locationJoin;
}
/**
* Sets the value of the locationJoin property.
*
* @param value
* allowed object is
* {@link LocationSearchRowBasic }
*
*/
public void setLocationJoin(LocationSearchRowBasic value) {
this.locationJoin = value;
}
/**
* Gets the value of the userJoin property.
*
* @return
* possible object is
* {@link EmployeeSearchRowBasic }
*
*/
public EmployeeSearchRowBasic getUserJoin() {
return userJoin;
}
/**
* Sets the value of the userJoin property.
*
* @param value
* allowed object is
* {@link EmployeeSearchRowBasic }
*
*/
public void setUserJoin(EmployeeSearchRowBasic value) {
this.userJoin = 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 Jakarta XML Binding 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 CustomSearchRowBasic }
*
*
*/
public List getCustomSearchJoin() {
if (customSearchJoin == null) {
customSearchJoin = new ArrayList();
}
return this.customSearchJoin;
}
}