Uses of Class
org.hibernate.engine.CascadingAction

Packages that use CascadingAction
org.hibernate.ejb.event   
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.event.def This package defines a default set of event listeners that implements the default behaviors of Hibernate. 
org.hibernate.loader.entity This package defines entity loaders 
 

Uses of CascadingAction in org.hibernate.ejb.event
 

Methods in org.hibernate.ejb.event that return CascadingAction
protected  CascadingAction EJB3PersistOnFlushEventListener.getCascadeAction()
           
protected  CascadingAction EJB3PersistEventListener.getCascadeAction()
           
protected  CascadingAction EJB3FlushEventListener.getCascadingAction()
           
protected  CascadingAction EJB3AutoFlushEventListener.getCascadingAction()
           
 

Uses of CascadingAction in org.hibernate.engine
 

Subclasses of CascadingAction in org.hibernate.engine
 class EJB3CascadingAction
          Because of CascadingAction constructor visibility I need a packaged friendly subclass TODO Get rid of it for 3.3
 

Fields in org.hibernate.engine declared as CascadingAction
static CascadingAction CascadingAction.DELETE
           
static CascadingAction CascadingAction.EVICT
           
static CascadingAction CascadingAction.LOCK
           
static CascadingAction CascadingAction.MERGE
           
static CascadingAction CascadingAction.PERSIST
           
static CascadingAction CascadingAction.PERSIST_ON_FLUSH
          Execute persist during flush time
static CascadingAction EJB3CascadingAction.PERSIST_SKIPLAZY
           
static CascadingAction CascadingAction.REFRESH
           
static CascadingAction CascadingAction.REPLICATE
           
static CascadingAction CascadingAction.SAVE_UPDATE
           
static CascadingAction CascadingAction.SAVE_UPDATE_COPY
           
 

Methods in org.hibernate.engine with parameters of type CascadingAction
abstract  boolean CascadeStyle.doCascade(CascadingAction action)
          For this style, should the given action be cascaded?
 boolean CascadeStyle.MultipleCascadeStyle.doCascade(CascadingAction action)
           
 boolean CascadeStyle.reallyDoCascade(CascadingAction action)
          Probably more aptly named something like doCascadeToCollectionElements(); it is however used from both the collection and to-one logic branches...
 boolean CascadeStyle.MultipleCascadeStyle.reallyDoCascade(CascadingAction action)
           
 

Constructors in org.hibernate.engine with parameters of type CascadingAction
Cascade(CascadingAction action, int cascadeTo, EventSource eventSource)
           
 

Uses of CascadingAction in org.hibernate.event.def
 

Methods in org.hibernate.event.def that return CascadingAction
protected  CascadingAction DefaultSaveOrUpdateEventListener.getCascadeAction()
           
protected  CascadingAction DefaultSaveOrUpdateCopyEventListener.getCascadeAction()
           
protected  CascadingAction DefaultReplicateEventListener.getCascadeAction()
           
protected  CascadingAction DefaultPersistOnFlushEventListener.getCascadeAction()
           
protected  CascadingAction DefaultPersistEventListener.getCascadeAction()
           
protected  CascadingAction DefaultMergeEventListener.getCascadeAction()
           
protected abstract  CascadingAction AbstractSaveEventListener.getCascadeAction()
           
protected  CascadingAction AbstractFlushingEventListener.getCascadingAction()
           
 

Uses of CascadingAction in org.hibernate.loader.entity
 

Constructors in org.hibernate.loader.entity with parameters of type CascadingAction
CascadeEntityJoinWalker(OuterJoinLoadable persister, CascadingAction action, SessionFactoryImplementor factory)
           
CascadeEntityLoader(OuterJoinLoadable persister, CascadingAction action, SessionFactoryImplementor factory)
           
 



Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.