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

Packages that use StoreManager
org.apache.jdo.impl.fostore This package contains the implementation of the File/Object Store JDO Reference Implementation (FOStore, pronounced "foster"). 
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.fostore
 

Classes in org.apache.jdo.impl.fostore that implement StoreManager
(package private)  class FOStoreStoreManager
          StoreManager represents the datastore to the rest of the JDO components.
 

Methods in org.apache.jdo.impl.fostore that return StoreManager
 StoreManager FOStorePMF.getStoreManager(javax.jdo.PersistenceManager pm)
           
 

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

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

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

Methods in org.apache.jdo.impl.state with parameters of type StoreManager
protected  LifeCycleState AutoPersistentNew.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 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.
 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
protected  LifeCycleState AutoPersistentNewFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          This is a reverse operation if reached.
protected  LifeCycleState PersistentNewFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          This is a no-op.
protected  LifeCycleState AutoPersistentNewFlushedDirty.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 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)
           
protected  LifeCycleState PersistentDeleted.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 PersistentDirtyFlushed.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
          It is a no-op.
protected  LifeCycleState PersistentNewFlushedDeleted.flush(java.util.BitSet loadedFields, java.util.BitSet dirtyFields, StoreManager srm, StateManagerImpl sm)
           
 

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.
 

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.