FileDocCategorySizeDatePackage
CommitCEntityContainer.javaAPI DocGlassfish v2 API4139Fri May 04 22:32:58 BST 2007com.sun.ejb.containers

CommitCEntityContainer

public class CommitCEntityContainer extends EntityContainer

Fields Summary
Constructors Summary
protected CommitCEntityContainer(EjbDescriptor desc, ClassLoader loader)
This constructor is called from the JarManager when a Jar is deployed.

exception
Exception on error

        super(desc, loader);
    
Methods Summary
protected voidaddReadyEJB(EntityContextImpl context)

        passivateAndPoolEJB(context);
    
protected voidcreateEJBObjectStores(int cacheSize, int numberOfVictimsToSelect, long idleTimeout)

        super.defaultCacheEJBO = false;
        super.createEJBObjectStores(cacheSize, numberOfVictimsToSelect, idleTimeout);
    
protected voidcreateReadyStore(int cacheSize, int numberOfVictimsToSelect, float loadFactor, long idleTimeout)

        readyStore = null;
    
protected voiddestroyReadyStoreOnUndeploy()

        readyStore = null;
    
protected EntityContextImplgetReadyEJB(Invocation inv)

        Object primaryKey = inv.ejbObject.getKey();
        return activateEJBFromPool(primaryKey, inv);
    
protected voidremoveContextFromReadyStore(java.lang.Object primaryKey, EntityContextImpl context)

        // There is nothing to remove as we don't have a readyStore