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

com.vmware.vim25.UserLogoutSessionEvent 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for UserLogoutSessionEvent complex type. * *

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

 * <complexType name="UserLogoutSessionEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}SessionEvent">
 *       <sequence>
 *         <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"/>
 *         <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="loginTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserLogoutSessionEvent", propOrder = { "ipAddress", "userAgent", "callCount", "sessionId", "loginTime" }) public class UserLogoutSessionEvent extends SessionEvent { protected String ipAddress; protected String userAgent; protected Long callCount; protected String sessionId; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar loginTime; /** * 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; } /** * Gets the value of the sessionId property. * * @return * possible object is * {@link String } * */ public String getSessionId() { return sessionId; } /** * Sets the value of the sessionId property. * * @param value * allowed object is * {@link String } * */ public void setSessionId(String value) { this.sessionId = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy