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 AddGroupRequestMessage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AddGroupRequestMessage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="GroupName" 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 = "AddGroupRequestMessage", propOrder = {
"groupName",
"domainId",
"domainName"
})
public class AddGroupRequestMessage {
@XmlElement(name = "GroupName")
protected String groupName;
@XmlElement(name = "DomainId", required = true, type = Integer.class, nillable = true)
protected Integer domainId;
@XmlElement(name = "DomainName")
protected String domainName;
/**
* Gets the value of the groupName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGroupName() {
return groupName;
}
/**
* Sets the value of the groupName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGroupName(String value) {
this.groupName = value;
}
/**
* Gets the value of the domainId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDomainId() {
return domainId;
}
/**
* Sets the value of the domainId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDomainId(Integer 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;
}
}