|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectedu.internet2.middleware.grouper.hibernate.ByObject
public class ByObject
| Method Summary | ||
|---|---|---|
void |
delete(java.util.Collection<?> collection)
call hibernate method "delete" on a list of objects HibernateSession.byObjectStatic().delete(collection); |
|
void |
delete(java.lang.Object object)
call hibernate method "delete" on a list of objects HibernateSession.byObjectStatic().delete(Rosetta.getDAO(_f)); |
|
boolean |
isIgnoreHooks()
if we should ignore hooks |
|
|
load(java.lang.Class<T> theClass,
java.io.Serializable id)
call hibernate method "load" on an object |
|
static void |
main(java.lang.String[] args)
|
|
void |
save(java.util.Collection<?> collection)
call hibernate method "save" on a list of objects HibernateSession.byObjectStatic().save(collection); |
|
java.io.Serializable |
save(java.lang.Object object)
call hibernate method "save" on an object HibernateSession.byObjectStatic().save(dao); |
|
void |
saveBatch(java.util.Collection<?> collection)
call hibernate method "save" on a collection of objects in batch |
|
void |
saveOrUpdate(java.util.Collection<?> collection)
call hibernate method "saveOrUpdate" on a list of objects HibernateSession.byObjectStatic().saveOrUpdate(collection); |
|
void |
saveOrUpdate(java.lang.Object object)
call hibernate method "save" on an object HibernateSession.byObjectStatic().save(dao); |
|
ByObject |
setEntityName(java.lang.String theEntityName)
entity name if the object is mapped to more than one table |
|
ByObject |
setIgnoreHooks(boolean theIgnoreHooks)
if we should ignore hooks |
|
void |
update(java.util.Collection<?> collection)
call hibernate method "update" on a list of objects HibernateSession.byObjectStatic().update(collection); |
|
void |
update(java.lang.Object object)
call hibernate "update" method on an object |
|
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public void delete(java.util.Collection<?> collection)
throws GrouperDAOException
call hibernate method "delete" on a list of objects HibernateSession.byObjectStatic().delete(collection);
collection - is collection of objects to delete in one transaction. If null or empty just ignore
GrouperDAOException
public void delete(java.lang.Object object)
throws GrouperDAOException
call hibernate method "delete" on a list of objects HibernateSession.byObjectStatic().delete(Rosetta.getDAO(_f));
object - is an object (if collection will still work), if null, will probably throw exception
GrouperDAOException
public void save(java.util.Collection<?> collection)
throws GrouperDAOException
call hibernate method "save" on a list of objects HibernateSession.byObjectStatic().save(collection);
collection - is collection of objects to save in one transaction. If null or empty just ignore
GrouperDAOException
public java.io.Serializable save(java.lang.Object object)
throws GrouperDAOException
call hibernate method "save" on an object HibernateSession.byObjectStatic().save(dao);
object - to save
GrouperDAOException
public void saveBatch(java.util.Collection<?> collection)
throws GrouperDAOException
call hibernate method "save" on a collection of objects in batch
collection - of objects to save
GrouperDAOException
public void saveOrUpdate(java.util.Collection<?> collection)
throws GrouperDAOException
call hibernate method "saveOrUpdate" on a list of objects HibernateSession.byObjectStatic().saveOrUpdate(collection);
collection - is collection of objects to saveOrUpdate in one transaction. If null or empty just ignore
GrouperDAOException
public void saveOrUpdate(java.lang.Object object)
throws GrouperDAOException
call hibernate method "save" on an object HibernateSession.byObjectStatic().save(dao);
object - to save
GrouperDAOException
public <T> T load(java.lang.Class<T> theClass,
java.io.Serializable id)
throws GrouperDAOException
call hibernate method "load" on an object
T - theClass - to loadid - to find in db
GrouperDAOException
public void update(java.util.Collection<?> collection)
throws GrouperDAOException
call hibernate method "update" on a list of objects HibernateSession.byObjectStatic().update(collection);
collection - is collection of objects to update in one transaction. If null or empty just ignore
GrouperDAOException
public void update(java.lang.Object object)
throws GrouperDAOException
object - to update
GrouperDAOExceptionpublic ByObject setIgnoreHooks(boolean theIgnoreHooks)
ByQueryBase.setIgnoreHooks(boolean)public ByObject setEntityName(java.lang.String theEntityName)
theEntityName - the entity name of the object
public boolean isIgnoreHooks()
public static void main(java.lang.String[] args)
args -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||