Package org.pentaho.platform.api.engine

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

Related Classes of org.pentaho.platform.api.engine.ISessionContainer

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.