SessionManagerpublic 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. |
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 ManagerProperties | getManagerProperties()
return (ManagerProperties)this.getValue(MANAGER_PROPERTIES);
| public StoreProperties | getStoreProperties()
return (StoreProperties)this.getValue(STORE_PROPERTIES);
| public void | setManagerProperties(ManagerProperties value)
this.setValue(MANAGER_PROPERTIES, value);
| public void | setStoreProperties(StoreProperties value)
this.setValue(STORE_PROPERTIES, value);
| public boolean | verify()
return true;
|
|