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

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

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

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:vim25}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"/>
 *         <element name="extensionSession" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="ipAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="userAgent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="callCount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserSession", propOrder = { "key", "userName", "fullName", "loginTime", "lastActiveTime", "locale", "messageLocale", "extensionSession", "ipAddress", "userAgent", "callCount" }) 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; protected Boolean extensionSession; protected String ipAddress; protected String userAgent; protected Long callCount; /** * 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; } /** * Gets the value of the extensionSession property. * * @return * possible object is * {@link Boolean } * */ public Boolean isExtensionSession() { return extensionSession; } /** * Sets the value of the extensionSession property. * * @param value * allowed object is * {@link Boolean } * */ public void setExtensionSession(Boolean value) { this.extensionSession = value; } /** * Gets the value of the ipAddress property. * * @return * possible object is * {@link String } * */ public String getIpAddress() { return ipAddress; } /** * Sets the value of the ipAddress property. * * @param value * allowed object is * {@link String } * */ public void setIpAddress(String value) { this.ipAddress = value; } /** * Gets the value of the userAgent property. * * @return * possible object is * {@link String } * */ public String getUserAgent() { return userAgent; } /** * Sets the value of the userAgent property. * * @param value * allowed object is * {@link String } * */ public void setUserAgent(String value) { this.userAgent = value; } /** * Gets the value of the callCount property. * * @return * possible object is * {@link Long } * */ public Long getCallCount() { return callCount; } /** * Sets the value of the callCount property. * * @param value * allowed object is * {@link Long } * */ public void setCallCount(Long value) { this.callCount = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy