Package org.pentaho.platform.web.http.session

Examples of org.pentaho.platform.web.http.session.PentahoHttpSession


  protected IPentahoSession generatePentahoSession( final HttpServletRequest httpRequest ) {
    HttpSession httpSession = httpRequest.getSession( false );
    IPentahoSession pentahoSession = null;
    if ( httpSession != null ) {
      pentahoSession = new PentahoHttpSession( null, httpSession, httpRequest.getLocale(), null );
    } else {
      pentahoSession = new NoDestroyStandaloneSession( null );
    }
    if ( callSetAuthenticatedForAnonymousUsers ) {
      pentahoSession.setAuthenticated( getAnonymousUser() );
View Full Code Here

TOP

Related Classes of org.pentaho.platform.web.http.session.PentahoHttpSession

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.