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

SessionConfig

public class SessionConfig 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
SESSION_MANAGER
public static final String
SESSION_PROPERTIES
public static final String
COOKIE_PROPERTIES
Constructors Summary
Methods Summary
public CookiePropertiesgetCookieProperties()

	return (CookieProperties)this.getValue(COOKIE_PROPERTIES);
    
public SessionManagergetSessionManager()

	return (SessionManager)this.getValue(SESSION_MANAGER);
    
public SessionPropertiesgetSessionProperties()

	return (SessionProperties)this.getValue(SESSION_PROPERTIES);
    
public voidsetCookieProperties(CookieProperties value)

	this.setValue(COOKIE_PROPERTIES, value);
    
public voidsetSessionManager(SessionManager value)

	// NOI18N
    
    // This attribute is optional
       
    
	this.setValue(SESSION_MANAGER, value);
    
public voidsetSessionProperties(SessionProperties value)

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

	return true;