Package com.sun.enterprise.config.serverbeans

Examples of com.sun.enterprise.config.serverbeans.SessionManager


    * return null if not defined or other problem
    * 7.0 xpath was "/server/web-container/session-config/session-manager/manager-properties";
    */ 
    public ManagerProperties getInstanceSessionManagerManagerProperties() {
       
        SessionManager smBean = this.getInstanceSessionManager();
        if(smBean == null) {
            return null;
        }
        return smBean.getManagerProperties();
    }
View Full Code Here


    * return null if not defined or other problem
    * 7.0 xpath was "/server/web-container/session-config/session-manager/store-properties";
    */ 
    public StoreProperties getInstanceSessionManagerStoreProperties() {
       
        SessionManager smBean = this.getInstanceSessionManager();
        if(smBean == null) {
            return null;
        }
        return smBean.getStoreProperties();
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.config.serverbeans.SessionManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.