FileDocCategorySizeDatePackage
SessionManager.javaAPI DocGlassfish v2 API3360Fri May 04 22:31:54 BST 2007com.sun.enterprise.deployment.runtime.web

SessionManager

public class SessionManager extends com.sun.enterprise.deployment.runtime.RuntimeDescriptor
this class contains runtime information for the web bundle it was kept to be backward compatible with the schema2beans descriptors generated by iAS 7.0 engineering team.
author
Jerome Dochez

Fields Summary
public static final String
MANAGER_PROPERTIES
public static final String
STORE_PROPERTIES
public static final String
PERSISTENCE_TYPE
Constructors Summary
public SessionManager()

    
     
    
	setAttributeValue(PERSISTENCE_TYPE, "memory");     
    
Methods Summary
public ManagerPropertiesgetManagerProperties()

	return (ManagerProperties)this.getValue(MANAGER_PROPERTIES);
    
public StorePropertiesgetStoreProperties()

	return (StoreProperties)this.getValue(STORE_PROPERTIES);
    
public voidsetManagerProperties(ManagerProperties value)

	this.setValue(MANAGER_PROPERTIES, value);
    
public voidsetStoreProperties(StoreProperties value)

	this.setValue(STORE_PROPERTIES, value);
    
public booleanverify()

	return true;