com.redhat.rhevm.api.model.Group Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.04.11 at 07:50:27 PM IST
//
package com.redhat.rhevm.api.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Group complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Group">
* <complexContent>
* <extension base="{}BaseResource">
* <sequence>
* <element ref="{}domain" minOccurs="0"/>
* <element name="roles" type="{}Roles" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Group", propOrder = {
"domain",
"roles"
})
public class Group
extends BaseResource
{
protected Domain domain;
protected Roles roles;
/**
* Gets the value of the domain property.
*
* @return
* possible object is
* {@link Domain }
*
*/
public Domain getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
*
* @param value
* allowed object is
* {@link Domain }
*
*/
public void setDomain(Domain value) {
this.domain = value;
}
public boolean isSetDomain() {
return (this.domain!= null);
}
/**
* Gets the value of the roles property.
*
* @return
* possible object is
* {@link Roles }
*
*/
public Roles getRoles() {
return roles;
}
/**
* Sets the value of the roles property.
*
* @param value
* allowed object is
* {@link Roles }
*
*/
public void setRoles(Roles value) {
this.roles = value;
}
public boolean isSetRoles() {
return (this.roles!= null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy