|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.turbine.services.security.torque.GroupPeerManager
public class GroupPeerManager
This class capsulates all direct Peer access for the Group entities. It allows the exchange of the default Turbine supplied TurbineGroupPeer class against a custom class.
Field Summary |
---|
Fields inherited from interface org.apache.turbine.services.security.torque.GroupPeerManagerConstants |
---|
GROUP_CLASS_KEY, GROUP_ID_COLUMN_DEFAULT, GROUP_ID_COLUMN_KEY, GROUP_ID_PROPERTY_DEFAULT, GROUP_ID_PROPERTY_KEY, GROUP_NAME_COLUMN_DEFAULT, GROUP_NAME_COLUMN_KEY, GROUP_NAME_PROPERTY_DEFAULT, GROUP_NAME_PROPERTY_KEY, GROUP_PEER_CLASS_DEFAULT, GROUP_PEER_CLASS_KEY |
Constructor Summary | |
---|---|
GroupPeerManager()
|
Method Summary | |
---|---|
static org.apache.torque.util.Criteria |
buildCriteria(Group group)
Calls buildCriteria(Group group) in the configured GroupPeer. |
static boolean |
checkExists(Group group)
Checks if a Group is defined in the system. |
static void |
doDelete(org.apache.torque.util.Criteria criteria)
Invokes doDelete(Criteria c) on the configured Peer Object |
static void |
doInsert(org.apache.torque.util.Criteria criteria)
Invokes doInsert(Criteria c) on the configured Peer Object |
static List |
doSelect(org.apache.torque.util.Criteria criteria)
Invokes doSelect(Criteria c) on the configured Peer Object |
static void |
doUpdate(org.apache.torque.util.Criteria criteria)
Invokes doUpdate(Criteria c) on the configured Peer Object |
static String |
getColumnName(String name)
Returns the full name of a column. |
static String |
getGroupName(org.apache.torque.om.Persistent obj)
Invokes getName() on the supplied base object |
static Integer |
getIdAsObj(org.apache.torque.om.Persistent obj)
Invokes getId() on the supplied base object |
static String |
getIdColumn()
Returns the fully qualified name of the Column to use as the Id Column for a group |
static String |
getNameColumn()
Returns the fully qualified name of the Column to use as the Name Column for a group |
static Group |
getNewGroup(org.apache.torque.om.Persistent p)
Returns a new, configured Group Object with a supplied Persistent object at its core |
static String |
getTableName()
Get the name of this table. |
static void |
init(org.apache.commons.configuration.Configuration conf)
Initializes the GroupPeerManager, loading the class object for the Peer used to retrieve Group objects |
static org.apache.torque.om.Persistent |
newPersistentInstance()
Returns a new, empty object for the underlying peer. |
static GroupSet |
retrieveSet()
Retrieves/assembles a GroupSet of all of the Groups. |
static GroupSet |
retrieveSet(org.apache.torque.util.Criteria criteria)
Retrieves/assembles a GroupSet based on the Criteria passed in |
static void |
setGroupName(org.apache.torque.om.Persistent obj,
String name)
Invokes setName(String s) on the supplied base object |
static void |
setId(org.apache.torque.om.Persistent obj,
int id)
Invokes setId(int n) on the supplied base object |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public GroupPeerManager()
Method Detail |
---|
public static void init(org.apache.commons.configuration.Configuration conf) throws InitializationException
conf
- The configuration object used to configure the Manager
InitializationException
- A problem occured during initializationpublic static String getTableName()
public static String getNameColumn()
public static String getIdColumn()
public static String getColumnName(String name)
name
- The column to fully qualify
public static org.apache.torque.om.Persistent newPersistentInstance()
public static GroupSet retrieveSet() throws Exception
Exception
- A generic exception.public static GroupSet retrieveSet(org.apache.torque.util.Criteria criteria) throws Exception
criteria
- A criteria containing a pre-assembled set of criterias
for the GroupSet
Exception
- A generic exceptionpublic static boolean checkExists(Group group) throws DataBackendException, Exception
group
- The Group to be checked.
true
if given Group exists in the system.
DataBackendException
- when more than one Group with
the same name exists.
Exception
- A generic exception.public static org.apache.torque.util.Criteria buildCriteria(Group group)
group
- An object which implements the Group interface
public static void doUpdate(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- A Criteria Object
org.apache.torque.TorqueException
- A problem occured.public static void doInsert(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- A Criteria Object
org.apache.torque.TorqueException
- A problem occured.public static List doSelect(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- A Criteria Object
org.apache.torque.TorqueException
- A problem occured.public static void doDelete(org.apache.torque.util.Criteria criteria) throws org.apache.torque.TorqueException
criteria
- A Criteria Object
org.apache.torque.TorqueException
- A problem occured.public static void setGroupName(org.apache.torque.om.Persistent obj, String name)
obj
- The object to use for setting the namename
- The Name to setpublic static String getGroupName(org.apache.torque.om.Persistent obj)
obj
- The object to use for getting the name
public static void setId(org.apache.torque.om.Persistent obj, int id)
obj
- The object to use for setting the nameid
- The new Idpublic static Integer getIdAsObj(org.apache.torque.om.Persistent obj)
obj
- The object to use for getting the id
public static Group getNewGroup(org.apache.torque.om.Persistent p)
p
- The persistent object
Exception
- Could not create a new Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |