Examples of ISessionContainer


Examples of org.pentaho.platform.api.engine.ISessionContainer

    // Clear out references to this session in attributes.
    // See BISERVER-2639 for details
    if ( attributes != null ) {
      for ( Object o : attributes.values() ) {
        if ( o instanceof ISessionContainer ) {
          ISessionContainer c = ( (ISessionContainer) o );
          // XXX: should synchronized check if the session is actually /this/ session
          c.setSession( null );
        }
      }
      attributes = null;
    }
    super.destroy();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.