Uses of Interface
org.apache.jdo.store.StoreManager

Packages that use StoreManager
org.apache.jdo.impl.pm This package contains classes that are for use across all kinds of implementations of the JDO Reference Implementation. 
org.apache.jdo.impl.state   
org.apache.jdo.pm This package contains provides internal interfaces for PersistenceManagerFactory and PersistenceManager extending the ones from javax.jdo. 
org.apache.jdo.state This package contains the internal StateManager and teh FIeldManager interface. 
org.apache.jdo.store This package contains StoreManager and store-related interfaces plus an abstract StoreManager implementation. 
 

Uses of StoreManager in org.apache.jdo.impl.pm
 

Fields in org.apache.jdo.impl.pm declared as StoreManager
private  StoreManager PersistenceManagerImpl._storeManager
          Reference to the StoreManager
 

Methods in org.apache.jdo.impl.pm that return StoreManager
 StoreManager PersistenceManagerImpl.getStoreManager()
           
 

Methods in org.apache.jdo.impl.pm with parameters of type StoreManager
 void PersistenceManagerImpl.setStoreManager(StoreManager storeManager)
           
 

Uses of StoreManager in org.apache.jdo.impl.state
 

Methods in org.apache.jdo.impl.state with parameters of type StoreManager
protected  LifeCycleState LifeCycleState.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          Performs state specific flush operation and transitions LifeCycleState depending on the result.
protected  LifeCycleState PersistentNewFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          This is a no-op.
protected  LifeCycleState PersistentNewFlushedDeleted.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState PersistentNew.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState PersistentDirty.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState PersistentNewFlushedDirty.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState AutoPersistentNew.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState AutoPersistentPending.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          This is a no-op operation if reached.
protected  LifeCycleState PersistentCleanTransactional.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
 boolean StateManagerImpl.flush(StoreManager srm)
           
private  void StateManagerImpl.fetch(StoreManager srm)
          Fetches instance from the data store
private  void StateManagerImpl.fetch(StoreManager srm, int[] fetchFields)
          Fetches specific fields in the instance from the data store
private  void StateManagerImpl.initializePC(StoreManager srm)
          Create a new PC instance with key fields copied from objectId
protected  LifeCycleState PersistentDeleted.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState PersistentDirtyFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          It is a no-op.
protected  LifeCycleState AutoPersistentNewFlushedDirty.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
protected  LifeCycleState AutoPersistentNewFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          This is a reverse operation if reached.
 

Uses of StoreManager in org.apache.jdo.pm
 

Methods in org.apache.jdo.pm that return StoreManager
 StoreManager PersistenceManagerInternal.getStoreManager()
          Provides a StoreManager that is ready to accept operations on it.
 StoreManager PersistenceManagerFactoryInternal.getStoreManager(javax.jdo.PersistenceManager pm)
          Provides a StoreManager that is ready to accept operations on it such as insert, etc.
 

Methods in org.apache.jdo.pm with parameters of type StoreManager
 void PersistenceManagerInternal.setStoreManager(StoreManager storeManager)
          Sets a StoreManager that is ready to accept operations on it such as insert, etc.
 

Uses of StoreManager in org.apache.jdo.state
 

Methods in org.apache.jdo.state with parameters of type StoreManager
 boolean StateManagerInternal.flush(StoreManager srm)
          Causes the state manager to send itself to the store manager for insert, update, and so on as per its own state.
 

Uses of StoreManager in org.apache.jdo.store
 

Classes in org.apache.jdo.store that implement StoreManager
 class StoreManagerImpl
          StoreManagerImpl provides a base for fully implementing the StoreManager interface.