Class TorqueAbstractBasicUser
- java.lang.Object
-
- org.apache.fulcrum.security.torque.security.TorqueAbstractSecurityEntity
-
- org.apache.fulcrum.security.torque.basic.TorqueAbstractBasicUser
-
- All Implemented Interfaces:
Serializable,SecurityEntity,User,BasicUser,org.apache.torque.om.ObjectModel,org.apache.torque.om.Persistent
- Direct Known Subclasses:
BaseTorqueBasicUser
public abstract class TorqueAbstractBasicUser extends TorqueAbstractSecurityEntity implements BasicUser
This abstract class provides the SecurityInterface to the managers.- Version:
- $Id:$
- Author:
- Thomas Vandahl
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TorqueAbstractBasicUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddGroup(Group group)voiddelete()Delete this entityStringgetDatabaseName()Get the name of the connnection pool associated to this objectGroupSetgetGroups()<T extends Group>
Set<T>getGroupsAsSet()protected List<TorqueBasicUserGroup>getTorqueBasicUserGroupsJoinTorqueBasicGroup(org.apache.torque.criteria.Criteria criteria, Connection con)Forward reference to generated code Get a list of association objects, pre-populated with their TorqueBasicGroup objects.voidremoveGroup(Group group)voidretrieveAttachedObjects(Connection con)Retrieve attached objects such as users, permissions,....voidretrieveAttachedObjects(Connection con, Boolean lazy)Retrieve attached objects such as users, permissions,....voidsetGroups(GroupSet groups)<T extends Group>
voidsetGroupsAsSet(Set<T> groups)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
-
Methods inherited from interface org.apache.fulcrum.security.entity.User
getPassword, setPassword
-
-
-
-
Method Detail
-
getTorqueBasicUserGroupsJoinTorqueBasicGroup
protected List<TorqueBasicUserGroup> getTorqueBasicUserGroupsJoinTorqueBasicGroup(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 TorqueBasicGroup 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
-
addGroup
public void addGroup(Group group)
- Specified by:
addGroupin interfaceBasicUser- See Also:
BasicUser.addGroup(org.apache.fulcrum.security.entity.Group)
-
getGroups
public GroupSet getGroups()
- Specified by:
getGroupsin interfaceBasicUser- See Also:
BasicUser.getGroups()
-
getGroupsAsSet
public <T extends Group> Set<T> getGroupsAsSet()
- Specified by:
getGroupsAsSetin interfaceBasicUser- See Also:
BasicUser.getGroupsAsSet()
-
removeGroup
public void removeGroup(Group group)
- Specified by:
removeGroupin interfaceBasicUser- See Also:
BasicUser.removeGroup(org.apache.fulcrum.security.entity.Group)
-
setGroups
public void setGroups(GroupSet groups)
- Specified by:
setGroupsin interfaceBasicUser- See Also:
BasicUser.setGroups(org.apache.fulcrum.security.util.GroupSet)
-
setGroupsAsSet
public <T extends Group> void setGroupsAsSet(Set<T> groups)
- Specified by:
setGroupsAsSetin interfaceBasicUser- See Also:
BasicUser.setGroupsAsSet(java.util.Set)
-
retrieveAttachedObjects
public void retrieveAttachedObjects(Connection con) throws DataBackendException
Retrieve attached objects such as users, permissions,....- 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
Retrieve 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
Update 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
-
getDatabaseName
public String getDatabaseName()
Get the name of the connnection pool associated to this object- Returns:
- the logical Torque database name
-
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- See Also:
TorqueAbstractSecurityEntity.delete()
-
-