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

com.scene7.ipsapi.User 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.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="passwordExpires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "User", propOrder = { "userHandle", "firstName", "lastName", "email", "imsUserId", "isValid", "isIpsAdmin", "passwordExpires" }) public class User { @XmlElement(required = true) protected String userHandle; @XmlElement(required = true) protected String firstName; @XmlElement(required = true) protected String lastName; @XmlElement(required = true) protected String email; protected String imsUserId; protected boolean isValid; protected boolean isIpsAdmin; @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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy