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 GroupOrUserRecord complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="GroupOrUserRecord">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="IsUser" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="GroupId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="UserId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupOrUserRecord", propOrder = {
"name",
"domainName",
"isUser",
"groupId",
"userId"
})
public class GroupOrUserRecord {
@XmlElement(name = "Name")
protected String name;
@XmlElement(name = "DomainName")
protected String domainName;
@XmlElement(name = "IsUser")
protected boolean isUser;
@XmlElement(name = "GroupId", required = true, type = Integer.class, nillable = true)
protected Integer groupId;
@XmlElement(name = "UserId", required = true, type = Integer.class, nillable = true)
protected Integer userId;
/**
* 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 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;
}
/**
* Gets the value of the isUser property.
*
*/
public boolean isIsUser() {
return isUser;
}
/**
* Sets the value of the isUser property.
*
*/
public void setIsUser(boolean value) {
this.isUser = value;
}
/**
* Gets the value of the groupId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getGroupId() {
return groupId;
}
/**
* Sets the value of the groupId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setGroupId(Integer value) {
this.groupId = value;
}
/**
* Gets the value of the userId property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setUserId(Integer value) {
this.userId = value;
}
}