package com.thesecretserver.service;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for Group complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Group">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Id" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DomainId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Group", propOrder = {
"id",
"name",
"domainId",
"domainName"
})
public class Group {
@XmlElement(name = "Id")
protected int id;
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "DomainId")
protected int domainId;
@XmlElement(name = "DomainName")
protected String domainName;
/**
* Gets the value of the id property.
*
*/
public int getId() {
return id;
}
/**
* Sets the value of the id property.
*
*/
public void setId(int value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the domainId property.
*
*/
public int getDomainId() {
return domainId;
}
/**
* Sets the value of the domainId property.
*
*/
public void setDomainId(int value) {
this.domainId = value;
}
/**
* Gets the value of the domainName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomainName() {
return domainName;
}
/**
* Sets the value of the domainName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomainName(String value) {
this.domainName = value;
}
}