![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.AccountCreatedEvent Maven / Gradle / Ivy
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.XmlType;
/**
* Java class for AccountCreatedEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountCreatedEvent">
* <complexContent>
* <extension base="{urn:vim25}HostEvent">
* <sequence>
* <element name="spec" type="{urn:vim25}HostAccountSpec"/>
* <element name="group" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountCreatedEvent", propOrder = {
"spec",
"group"
})
public class AccountCreatedEvent
extends HostEvent
{
@XmlElement(required = true)
protected HostAccountSpec spec;
protected boolean group;
/**
* Gets the value of the spec property.
*
* @return
* possible object is
* {@link HostAccountSpec }
*
*/
public HostAccountSpec getSpec() {
return spec;
}
/**
* Sets the value of the spec property.
*
* @param value
* allowed object is
* {@link HostAccountSpec }
*
*/
public void setSpec(HostAccountSpec value) {
this.spec = value;
}
/**
* Gets the value of the group property.
*
*/
public boolean isGroup() {
return group;
}
/**
* Sets the value of the group property.
*
*/
public void setGroup(boolean value) {
this.group = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy