Java Code Examples for org.apache.catalina.Store#setManager()

The following examples show how to use org.apache.catalina.Store#setManager() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PersistentManagerBase.java    From Tomcat8-Source-Read with MIT License 2 votes vote down vote up
/**
 * Set the Store object which will manage persistent Session
 * storage for this Manager.
 *
 * @param store the associated Store
 */
public void setStore(Store store) {
    this.store = store;
    store.setManager(this);
}
 
Example 2
Source File: PersistentManagerBase.java    From Tomcat7.0.67 with Apache License 2.0 2 votes vote down vote up
/**
 * Set the Store object which will manage persistent Session
 * storage for this Manager.
 *
 * @param store the associated Store
 */
public void setStore(Store store) {
    this.store = store;
    store.setManager(this);

}
 
Example 3
Source File: PersistentManagerBase.java    From tomcatsrc with Apache License 2.0 2 votes vote down vote up
/**
 * Set the Store object which will manage persistent Session
 * storage for this Manager.
 *
 * @param store the associated Store
 */
public void setStore(Store store) {
    this.store = store;
    store.setManager(this);
}
 
Example 4
Source File: DatastoreManager.java    From tomcat-runtime with Apache License 2.0 2 votes vote down vote up
/**
 * The store will be injected by Tomcat on startup.
 *
 * <p>See distributed-sessions.xml for the configuration.</p>
 */
public void setStore(Store store) {
  this.store = store;
  store.setManager(this);
}