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