| Package | Description |
|---|---|
| com.sptci.jdo |
Package with core JDO data objects and interfaces.
|
| Modifier and Type | Field and Description |
|---|---|
protected Collection<Group> |
User.groups
The collection of groups to which the user belongs.
|
| Modifier and Type | Method and Description |
|---|---|
Group |
GroupFactory.fetchByName(String name,
javax.jdo.PersistenceManager pm)
Retrieve the
Group uniquely identified by the specified
NameDescription.name field value. |
| Modifier and Type | Method and Description |
|---|---|
Collection<Group> |
GroupFactory.fetch(long start,
long end,
javax.jdo.PersistenceManager pm)
Return a collection that contains all
Group instances in the data
store within the specified range. |
Collection<Group> |
GroupFactory.fetchAll(javax.jdo.PersistenceManager pm)
Return a collection of all the instances of
Group objects
available in the data store. |
Collection<Group> |
User.getGroups()
Returns
User.groups. |
| Modifier and Type | Method and Description |
|---|---|
void |
User.addGroup(Group group)
Add this user as a member of the specified group.
|
void |
User.removeGroup(Group group)
Remove this user from being a member of the specified group.
|
| Modifier and Type | Method and Description |
|---|---|
void |
User.setGroups(Collection<Group> groups)
Update the
User.groups with the objects specified in the
collection. |