public class Group extends EntityBaseBean
Java class for group complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="group"> <complexContent> <extension base="{client.icat3.uk}entityBaseBean"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="rules" type="{client.icat3.uk}rule" maxOccurs="unbounded" minOccurs="0"/> <element name="userGroups" type="{client.icat3.uk}userGroup" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
name |
protected List<Rule> |
rules |
protected List<UserGroup> |
userGroups |
createId, createTime, id, modId, modTime
Constructor and Description |
---|
Group() |
Modifier and Type | Method and Description |
---|---|
String |
getName()
Gets the value of the name property.
|
List<Rule> |
getRules()
Gets the value of the rules property.
|
List<UserGroup> |
getUserGroups()
Gets the value of the userGroups property.
|
void |
setName(String value)
Sets the value of the name property.
|
getCreateId, getCreateTime, getId, getModId, getModTime, setCreateId, setCreateTime, setId, setModId, setModTime
protected String name
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public List<Rule> getRules()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the rules property.
For example, to add a new item, do as follows:
getRules().add(newItem);
Objects of the following type(s) are allowed in the list
Rule
public List<UserGroup> getUserGroups()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the userGroups property.
For example, to add a new item, do as follows:
getUserGroups().add(newItem);
Objects of the following type(s) are allowed in the list
UserGroup
Copyright © 2013 The ICAT Collaboration. All Rights Reserved.