com.scene7.ipsapi.User 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: 2022.10.13 at 11:32:55 AM 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for User complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="User">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="userHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="imsUserId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="isValid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isIpsAdmin" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="defaultRole" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="role" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="passwordExpires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "User", namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", propOrder = {
"userHandle",
"firstName",
"lastName",
"email",
"imsUserId",
"isValid",
"isIpsAdmin",
"defaultRole",
"role",
"passwordExpires"
})
public class User {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String userHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String firstName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String lastName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta", required = true)
protected String email;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String imsUserId;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected boolean isValid;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected boolean isIpsAdmin;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String defaultRole;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
protected String role;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2021-04-26-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar passwordExpires;
/**
* Gets the value of the userHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserHandle() {
return userHandle;
}
/**
* Sets the value of the userHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserHandle(String value) {
this.userHandle = value;
}
/**
* Gets the value of the firstName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFirstName() {
return firstName;
}
/**
* Sets the value of the firstName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFirstName(String value) {
this.firstName = value;
}
/**
* Gets the value of the lastName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastName() {
return lastName;
}
/**
* Sets the value of the lastName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastName(String value) {
this.lastName = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the imsUserId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getImsUserId() {
return imsUserId;
}
/**
* Sets the value of the imsUserId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setImsUserId(String value) {
this.imsUserId = value;
}
/**
* Gets the value of the isValid property.
*
*/
public boolean isIsValid() {
return isValid;
}
/**
* Sets the value of the isValid property.
*
*/
public void setIsValid(boolean value) {
this.isValid = value;
}
/**
* Gets the value of the isIpsAdmin property.
*
*/
public boolean isIsIpsAdmin() {
return isIpsAdmin;
}
/**
* Sets the value of the isIpsAdmin property.
*
*/
public void setIsIpsAdmin(boolean value) {
this.isIpsAdmin = value;
}
/**
* Gets the value of the defaultRole property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefaultRole() {
return defaultRole;
}
/**
* Sets the value of the defaultRole property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefaultRole(String value) {
this.defaultRole = value;
}
/**
* Gets the value of the role property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRole() {
return role;
}
/**
* Sets the value of the role property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRole(String value) {
this.role = value;
}
/**
* Gets the value of the passwordExpires property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPasswordExpires() {
return passwordExpires;
}
/**
* Sets the value of the passwordExpires property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setPasswordExpires(XMLGregorianCalendar value) {
this.passwordExpires = value;
}
}