public class User extends EntityBaseBean
Java class for user complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="user"> <complexContent> <extension base="{http://icatproject.org}entityBaseBean"> <sequence> <element name="fullName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="instrumentScientists" type="{http://icatproject.org}instrumentScientist" maxOccurs="unbounded" minOccurs="0"/> <element name="investigationUsers" type="{http://icatproject.org}investigationUser" maxOccurs="unbounded" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="studies" type="{http://icatproject.org}study" maxOccurs="unbounded" minOccurs="0"/> <element name="userGroups" type="{http://icatproject.org}userGroup" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
fullName |
protected List<InstrumentScientist> |
instrumentScientists |
protected List<InvestigationUser> |
investigationUsers |
protected String |
name |
protected List<Study> |
studies |
protected List<UserGroup> |
userGroups |
createId, createTime, id, modId, modTime
Constructor and Description |
---|
User() |
Modifier and Type | Method and Description |
---|---|
String |
getFullName()
Gets the value of the fullName property.
|
List<InstrumentScientist> |
getInstrumentScientists()
Gets the value of the instrumentScientists property.
|
List<InvestigationUser> |
getInvestigationUsers()
Gets the value of the investigationUsers property.
|
String |
getName()
Gets the value of the name property.
|
List<Study> |
getStudies()
Gets the value of the studies property.
|
List<UserGroup> |
getUserGroups()
Gets the value of the userGroups property.
|
void |
setFullName(String value)
Sets the value of the fullName property.
|
void |
setName(String value)
Sets the value of the name property.
|
getCreateId, getCreateTime, getId, getModId, getModTime, setCreateId, setCreateTime, setId, setModId, setModTime
protected String fullName
protected List<InstrumentScientist> instrumentScientists
protected List<InvestigationUser> investigationUsers
protected String name
public String getFullName()
String
public void setFullName(String value)
value
- allowed object is
String
public List<InstrumentScientist> getInstrumentScientists()
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 instrumentScientists property.
For example, to add a new item, do as follows:
getInstrumentScientists().add(newItem);
Objects of the following type(s) are allowed in the list
InstrumentScientist
public List<InvestigationUser> getInvestigationUsers()
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 investigationUsers property.
For example, to add a new item, do as follows:
getInvestigationUsers().add(newItem);
Objects of the following type(s) are allowed in the list
InvestigationUser
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public List<Study> getStudies()
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 studies property.
For example, to add a new item, do as follows:
getStudies().add(newItem);
Objects of the following type(s) are allowed in the list
Study
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.