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

com.vmware.vim.UserSession Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

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 UserSession complex type. * *

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

 * <complexType name="UserSession">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="loginTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="lastActiveTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="messageLocale" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserSession", propOrder = { "key", "userName", "fullName", "loginTime", "lastActiveTime", "locale", "messageLocale" }) public class UserSession extends DynamicData { @XmlElement(required = true) protected String key; @XmlElement(required = true) protected String userName; @XmlElement(required = true) protected String fullName; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar loginTime; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastActiveTime; @XmlElement(required = true) protected String locale; @XmlElement(required = true) protected String messageLocale; /** * Gets the value of the key property. * * @return * possible object is * {@link String } * */ public String getKey() { return key; } /** * Sets the value of the key property. * * @param value * allowed object is * {@link String } * */ public void setKey(String value) { this.key = value; } /** * Gets the value of the userName property. * * @return * possible object is * {@link String } * */ public String getUserName() { return userName; } /** * Sets the value of the userName property. * * @param value * allowed object is * {@link String } * */ public void setUserName(String value) { this.userName = value; } /** * Gets the value of the fullName property. * * @return * possible object is * {@link String } * */ public String getFullName() { return fullName; } /** * Sets the value of the fullName property. * * @param value * allowed object is * {@link String } * */ public void setFullName(String value) { this.fullName = value; } /** * Gets the value of the loginTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLoginTime() { return loginTime; } /** * Sets the value of the loginTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLoginTime(XMLGregorianCalendar value) { this.loginTime = value; } /** * Gets the value of the lastActiveTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastActiveTime() { return lastActiveTime; } /** * Sets the value of the lastActiveTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastActiveTime(XMLGregorianCalendar value) { this.lastActiveTime = value; } /** * Gets the value of the locale property. * * @return * possible object is * {@link String } * */ public String getLocale() { return locale; } /** * Sets the value of the locale property. * * @param value * allowed object is * {@link String } * */ public void setLocale(String value) { this.locale = value; } /** * Gets the value of the messageLocale property. * * @return * possible object is * {@link String } * */ public String getMessageLocale() { return messageLocale; } /** * Sets the value of the messageLocale property. * * @param value * allowed object is * {@link String } * */ public void setMessageLocale(String value) { this.messageLocale = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy