
com.sun.xml.ws.commons.virtualbox.IRemoteDisplayInfo Maven / Gradle / Ivy
package com.sun.xml.ws.commons.virtualbox;
import java.math.BigInteger;
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;
/**
* Java class for IRemoteDisplayInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IRemoteDisplayInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="numberOfClients" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* <element name="beginTime" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="endTime" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="bytesSent" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* <element name="bytesSentTotal" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* <element name="bytesReceived" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* <element name="bytesReceivedTotal" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
* <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="clientName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="clientIP" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="clientVersion" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* <element name="encryptionStyle" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IRemoteDisplayInfo", propOrder = {
"active",
"numberOfClients",
"beginTime",
"endTime",
"bytesSent",
"bytesSentTotal",
"bytesReceived",
"bytesReceivedTotal",
"user",
"domain",
"clientName",
"clientIP",
"clientVersion",
"encryptionStyle"
})
public class IRemoteDisplayInfo {
protected boolean active;
@XmlSchemaType(name = "unsignedInt")
protected long numberOfClients;
protected long beginTime;
protected long endTime;
@XmlElement(required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger bytesSent;
@XmlElement(required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger bytesSentTotal;
@XmlElement(required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger bytesReceived;
@XmlElement(required = true)
@XmlSchemaType(name = "unsignedLong")
protected BigInteger bytesReceivedTotal;
@XmlElement(required = true)
protected String user;
@XmlElement(required = true)
protected String domain;
@XmlElement(required = true)
protected String clientName;
@XmlElement(required = true)
protected String clientIP;
@XmlSchemaType(name = "unsignedInt")
protected long clientVersion;
@XmlSchemaType(name = "unsignedInt")
protected long encryptionStyle;
/**
* Gets the value of the active property.
*
*/
public boolean isActive() {
return active;
}
/**
* Sets the value of the active property.
*
*/
public void setActive(boolean value) {
this.active = value;
}
/**
* Gets the value of the numberOfClients property.
*
*/
public long getNumberOfClients() {
return numberOfClients;
}
/**
* Sets the value of the numberOfClients property.
*
*/
public void setNumberOfClients(long value) {
this.numberOfClients = value;
}
/**
* Gets the value of the beginTime property.
*
*/
public long getBeginTime() {
return beginTime;
}
/**
* Sets the value of the beginTime property.
*
*/
public void setBeginTime(long value) {
this.beginTime = value;
}
/**
* Gets the value of the endTime property.
*
*/
public long getEndTime() {
return endTime;
}
/**
* Sets the value of the endTime property.
*
*/
public void setEndTime(long value) {
this.endTime = value;
}
/**
* Gets the value of the bytesSent property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getBytesSent() {
return bytesSent;
}
/**
* Sets the value of the bytesSent property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBytesSent(BigInteger value) {
this.bytesSent = value;
}
/**
* Gets the value of the bytesSentTotal property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getBytesSentTotal() {
return bytesSentTotal;
}
/**
* Sets the value of the bytesSentTotal property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBytesSentTotal(BigInteger value) {
this.bytesSentTotal = value;
}
/**
* Gets the value of the bytesReceived property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getBytesReceived() {
return bytesReceived;
}
/**
* Sets the value of the bytesReceived property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBytesReceived(BigInteger value) {
this.bytesReceived = value;
}
/**
* Gets the value of the bytesReceivedTotal property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getBytesReceivedTotal() {
return bytesReceivedTotal;
}
/**
* Sets the value of the bytesReceivedTotal property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setBytesReceivedTotal(BigInteger value) {
this.bytesReceivedTotal = value;
}
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser(String value) {
this.user = value;
}
/**
* Gets the value of the domain property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomain(String value) {
this.domain = value;
}
/**
* Gets the value of the clientName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClientName() {
return clientName;
}
/**
* Sets the value of the clientName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClientName(String value) {
this.clientName = value;
}
/**
* Gets the value of the clientIP property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClientIP() {
return clientIP;
}
/**
* Sets the value of the clientIP property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClientIP(String value) {
this.clientIP = value;
}
/**
* Gets the value of the clientVersion property.
*
*/
public long getClientVersion() {
return clientVersion;
}
/**
* Sets the value of the clientVersion property.
*
*/
public void setClientVersion(long value) {
this.clientVersion = value;
}
/**
* Gets the value of the encryptionStyle property.
*
*/
public long getEncryptionStyle() {
return encryptionStyle;
}
/**
* Sets the value of the encryptionStyle property.
*
*/
public void setEncryptionStyle(long value) {
this.encryptionStyle = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy