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

com.bytekast.netsuite.client.CustomRecordSearch 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 CustomRecordSearch complex type. * *

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

 * <complexType name="CustomRecordSearch">
 *   <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}CustomRecordSearchBasic" minOccurs="0"/>
 *         <element name="fileJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}FileSearchBasic" minOccurs="0"/>
 *         <element name="messagesJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}MessageSearchBasic" minOccurs="0"/>
 *         <element name="ownerJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}EmployeeSearchBasic" minOccurs="0"/>
 *         <element name="userJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}EmployeeSearchBasic" minOccurs="0"/>
 *         <element name="userNotesJoin" type="{urn:common_2017_1.platform.webservices.netsuite.com}NoteSearchBasic" 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 = "CustomRecordSearch", namespace = "urn:customization_2017_1.setup.webservices.netsuite.com", propOrder = { "basic", "fileJoin", "messagesJoin", "ownerJoin", "userJoin", "userNotesJoin", "customSearchJoin" }) public class CustomRecordSearch extends SearchRecord implements Serializable { protected CustomRecordSearchBasic basic; protected FileSearchBasic fileJoin; protected MessageSearchBasic messagesJoin; protected EmployeeSearchBasic ownerJoin; protected EmployeeSearchBasic userJoin; protected NoteSearchBasic userNotesJoin; protected List customSearchJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link CustomRecordSearchBasic } * */ public CustomRecordSearchBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link CustomRecordSearchBasic } * */ public void setBasic(CustomRecordSearchBasic value) { this.basic = value; } /** * Gets the value of the fileJoin property. * * @return * possible object is * {@link FileSearchBasic } * */ public FileSearchBasic getFileJoin() { return fileJoin; } /** * Sets the value of the fileJoin property. * * @param value * allowed object is * {@link FileSearchBasic } * */ public void setFileJoin(FileSearchBasic value) { this.fileJoin = value; } /** * Gets the value of the messagesJoin property. * * @return * possible object is * {@link MessageSearchBasic } * */ public MessageSearchBasic getMessagesJoin() { return messagesJoin; } /** * Sets the value of the messagesJoin property. * * @param value * allowed object is * {@link MessageSearchBasic } * */ public void setMessagesJoin(MessageSearchBasic value) { this.messagesJoin = value; } /** * Gets the value of the ownerJoin property. * * @return * possible object is * {@link EmployeeSearchBasic } * */ public EmployeeSearchBasic getOwnerJoin() { return ownerJoin; } /** * Sets the value of the ownerJoin property. * * @param value * allowed object is * {@link EmployeeSearchBasic } * */ public void setOwnerJoin(EmployeeSearchBasic value) { this.ownerJoin = 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 userNotesJoin property. * * @return * possible object is * {@link NoteSearchBasic } * */ public NoteSearchBasic getUserNotesJoin() { return userNotesJoin; } /** * Sets the value of the userNotesJoin property. * * @param value * allowed object is * {@link NoteSearchBasic } * */ public void setUserNotesJoin(NoteSearchBasic value) { this.userNotesJoin = 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