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

com.scene7.ipsapi.GetUsersParam Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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 name="includeInvalid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="includeInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="companyHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="groupHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="userRoleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *         <element name="charFilterField" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="charFilter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sortBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="recordsPerPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="resultsPage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "includeInvalid", "includeInactive", "companyHandleArray", "groupHandleArray", "userRoleArray", "charFilterField", "charFilter", "sortBy", "recordsPerPage", "resultsPage" }) @XmlRootElement(name = "getUsersParam") public class GetUsersParam { protected Boolean includeInvalid; protected Boolean includeInactive; protected HandleArray companyHandleArray; protected HandleArray groupHandleArray; protected StringArray userRoleArray; protected String charFilterField; protected String charFilter; protected String sortBy; protected Integer recordsPerPage; protected Integer resultsPage; /** * Gets the value of the includeInvalid property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeInvalid() { return includeInvalid; } /** * Sets the value of the includeInvalid property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeInvalid(Boolean value) { this.includeInvalid = value; } /** * Gets the value of the includeInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeInactive() { return includeInactive; } /** * Sets the value of the includeInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeInactive(Boolean value) { this.includeInactive = value; } /** * Gets the value of the companyHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getCompanyHandleArray() { return companyHandleArray; } /** * Sets the value of the companyHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setCompanyHandleArray(HandleArray value) { this.companyHandleArray = value; } /** * Gets the value of the groupHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getGroupHandleArray() { return groupHandleArray; } /** * Sets the value of the groupHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setGroupHandleArray(HandleArray value) { this.groupHandleArray = value; } /** * Gets the value of the userRoleArray property. * * @return * possible object is * {@link StringArray } * */ public StringArray getUserRoleArray() { return userRoleArray; } /** * Sets the value of the userRoleArray property. * * @param value * allowed object is * {@link StringArray } * */ public void setUserRoleArray(StringArray value) { this.userRoleArray = value; } /** * Gets the value of the charFilterField property. * * @return * possible object is * {@link String } * */ public String getCharFilterField() { return charFilterField; } /** * Sets the value of the charFilterField property. * * @param value * allowed object is * {@link String } * */ public void setCharFilterField(String value) { this.charFilterField = value; } /** * Gets the value of the charFilter property. * * @return * possible object is * {@link String } * */ public String getCharFilter() { return charFilter; } /** * Sets the value of the charFilter property. * * @param value * allowed object is * {@link String } * */ public void setCharFilter(String value) { this.charFilter = value; } /** * Gets the value of the sortBy property. * * @return * possible object is * {@link String } * */ public String getSortBy() { return sortBy; } /** * Sets the value of the sortBy property. * * @param value * allowed object is * {@link String } * */ public void setSortBy(String value) { this.sortBy = value; } /** * Gets the value of the recordsPerPage property. * * @return * possible object is * {@link Integer } * */ public Integer getRecordsPerPage() { return recordsPerPage; } /** * Sets the value of the recordsPerPage property. * * @param value * allowed object is * {@link Integer } * */ public void setRecordsPerPage(Integer value) { this.recordsPerPage = value; } /** * Gets the value of the resultsPage property. * * @return * possible object is * {@link Integer } * */ public Integer getResultsPage() { return resultsPage; } /** * Sets the value of the resultsPage property. * * @param value * allowed object is * {@link Integer } * */ public void setResultsPage(Integer value) { this.resultsPage = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy