![JAR search and dependency download from the Maven repository](/logo.png)
com.scene7.ipsapi.GetUserCharsParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
package com.scene7.ipsapi;
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 name="charField" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <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/2024-05-30-beta}HandleArray" minOccurs="0"/>
* <element name="groupHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}HandleArray" minOccurs="0"/>
* <element name="userRoleArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
* <element name="numChars" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"charField",
"includeInvalid",
"includeInactive",
"companyHandleArray",
"groupHandleArray",
"userRoleArray",
"numChars"
})
@XmlRootElement(name = "getUserCharsParam", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
public class GetUserCharsParam {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String charField;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean includeInvalid;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean includeInactive;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected HandleArray companyHandleArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected HandleArray groupHandleArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected StringArray userRoleArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Integer numChars;
/**
* Gets the value of the charField property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCharField() {
return charField;
}
/**
* Sets the value of the charField property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCharField(String value) {
this.charField = value;
}
/**
* 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 numChars property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNumChars() {
return numChars;
}
/**
* Sets the value of the numChars property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNumChars(Integer value) {
this.numChars = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy