Class TorqueAbstractDynamicGroup
- java.lang.Object
-
- org.apache.fulcrum.security.torque.security.TorqueAbstractSecurityEntity
-
- org.apache.fulcrum.security.torque.dynamic.TorqueAbstractDynamicGroup
-
- All Implemented Interfaces:
Serializable,Group,SecurityEntity,BasicGroup,DynamicGroup,org.apache.torque.om.ObjectModel,org.apache.torque.om.Persistent
- Direct Known Subclasses:
BaseTorqueDynamicGroup
public abstract class TorqueAbstractDynamicGroup extends TorqueAbstractSecurityEntity implements DynamicGroup
This abstract class provides the SecurityInterface to the managers.- Version:
- $Id:$
- Author:
- Thomas Vandahl
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TorqueAbstractDynamicGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRole(Role role)voidaddUser(User user)voiddelete()Delete this entityStringgetDatabaseName()RoleSetgetRoles()<T extends Role>
Set<T>getRolesAsSet()protected List<TorqueDynamicGroupRole>getTorqueDynamicGroupRolesJoinTorqueDynamicRole(org.apache.torque.criteria.Criteria criteria, Connection con)Forward reference to generated code Get a list of association objects, pre-populated with their TorqueDynamicRole objects.protected List<TorqueDynamicUserGroup>getTorqueDynamicUserGroupsJoinTorqueDynamicUser(org.apache.torque.criteria.Criteria criteria, Connection con)Forward reference to generated code Get a list of association objects, pre-populated with their TorqueDynamicUser objects.UserSetgetUsers()<T extends User>
Set<T>getUsersAsSet()voidremoveRole(Role role)voidremoveUser(User user)voidretrieveAttachedObjects(Connection con)old contract, lazy is set tofalse.voidretrieveAttachedObjects(Connection con, Boolean lazy)Retrieve attached objects such as users, permissions, ...voidsetRoles(RoleSet roleSet)<T extends Role>
voidsetRolesAsSet(Set<T> roles)voidsetUsers(UserSet userSet)<T extends User>
voidsetUsersAsSet(Set<T> users)voidupdate(Connection con)Update this instance to the database with all dependent objects-
Methods inherited from class org.apache.fulcrum.security.torque.security.TorqueAbstractSecurityEntity
getEntityId, getEntityName, getId, getName, setEntityId, setEntityName, setId, setName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.torque.om.ObjectModel
getPrimaryKey, isModified, isNew, setModified, setNew, setPrimaryKey, setPrimaryKey
-
Methods inherited from interface org.apache.fulcrum.security.entity.SecurityEntity
getId, getName, setId, setName
-
-
-
-
Method Detail
-
getTorqueDynamicUserGroupsJoinTorqueDynamicUser
protected List<TorqueDynamicUserGroup> getTorqueDynamicUserGroupsJoinTorqueDynamicUser(org.apache.torque.criteria.Criteria criteria, Connection con) throws org.apache.torque.TorqueException
Forward reference to generated code Get a list of association objects, pre-populated with their TorqueDynamicUser objects.- Parameters:
criteria- Criteria to define the selection of recordscon- a database connection- Returns:
- a list of User/Group relations
- Throws:
org.apache.torque.TorqueException- if any database error occurs
-
getTorqueDynamicGroupRolesJoinTorqueDynamicRole
protected List<TorqueDynamicGroupRole> getTorqueDynamicGroupRolesJoinTorqueDynamicRole(org.apache.torque.criteria.Criteria criteria, Connection con) throws org.apache.torque.TorqueException
Forward reference to generated code Get a list of association objects, pre-populated with their TorqueDynamicRole objects.- Parameters:
criteria- Criteria to define the selection of recordscon- a database connection- Returns:
- a list of Role/Group relations
- Throws:
org.apache.torque.TorqueException- if any database error occurs
-
addUser
public void addUser(User user)
- Specified by:
addUserin interfaceBasicGroup
-
getUsers
public UserSet getUsers()
- Specified by:
getUsersin interfaceBasicGroup
-
getUsersAsSet
public <T extends User> Set<T> getUsersAsSet()
- Specified by:
getUsersAsSetin interfaceBasicGroup
-
removeUser
public void removeUser(User user)
- Specified by:
removeUserin interfaceBasicGroup
-
setUsers
public void setUsers(UserSet userSet)
- Specified by:
setUsersin interfaceBasicGroup
-
setUsersAsSet
public <T extends User> void setUsersAsSet(Set<T> users)
- Specified by:
setUsersAsSetin interfaceBasicGroup
-
addRole
public void addRole(Role role)
- Specified by:
addRolein interfaceDynamicGroup
-
getRoles
public RoleSet getRoles()
- Specified by:
getRolesin interfaceDynamicGroup
-
getRolesAsSet
public <T extends Role> Set<T> getRolesAsSet()
- Specified by:
getRolesAsSetin interfaceDynamicGroup
-
removeRole
public void removeRole(Role role)
- Specified by:
removeRolein interfaceDynamicGroup
-
setRoles
public void setRoles(RoleSet roleSet)
- Specified by:
setRolesin interfaceDynamicGroup
-
setRolesAsSet
public <T extends Role> void setRolesAsSet(Set<T> roles)
- Specified by:
setRolesAsSetin interfaceDynamicGroup
-
getDatabaseName
public String getDatabaseName()
- Returns:
- the database name
-
retrieveAttachedObjects
public void retrieveAttachedObjects(Connection con) throws DataBackendException
Description copied from class:TorqueAbstractSecurityEntityold contract, lazy is set tofalse.- Specified by:
retrieveAttachedObjectsin classTorqueAbstractSecurityEntity- Parameters:
con- A database connection- Throws:
DataBackendException- wrapper exception: user information not found exception
-
retrieveAttachedObjects
public void retrieveAttachedObjects(Connection con, Boolean lazy) throws DataBackendException
Description copied from class:TorqueAbstractSecurityEntityRetrieve attached objects such as users, permissions, ...- Specified by:
retrieveAttachedObjectsin classTorqueAbstractSecurityEntity- Parameters:
con- A database connectionlazy- iftrue, may load some or all relationships later- Throws:
DataBackendException
-
update
public void update(Connection con) throws org.apache.torque.TorqueException
Description copied from class:TorqueAbstractSecurityEntityUpdate this instance to the database with all dependent objects- Specified by:
updatein classTorqueAbstractSecurityEntity- Parameters:
con- A database connection- Throws:
org.apache.torque.TorqueException- database not found exception
-
delete
public void delete() throws org.apache.torque.TorqueExceptionDescription copied from class:TorqueAbstractSecurityEntityDelete this entity- Specified by:
deletein classTorqueAbstractSecurityEntity- Throws:
org.apache.torque.TorqueException- if any database error occurs if any database operation fails
-
-