Package org.pentaho.platform.web.http.request

Examples of org.pentaho.platform.web.http.request.MultiReadHttpServletRequest


          "RequestParameterAuthenticationFilter.ERROR_0006_HTTP_SERVLET_RESPONSE_REQUIRED" ) ); //$NON-NLS-1$
    }

    HttpServletRequest httpRequest = (HttpServletRequest) request;

    MultiReadHttpServletRequest wrapper = new MultiReadHttpServletRequest( httpRequest );

    String username = wrapper.getParameter( this.userNameParameter );
    String password = wrapper.getParameter( this.passwordParameter );

    if ( RequestParameterAuthenticationFilter.logger.isDebugEnabled() ) {
      RequestParameterAuthenticationFilter.logger.debug( Messages.getInstance().getString(
          "RequestParameterAuthenticationFilter.DEBUG_AUTH_USERID", username ) ); //$NON-NLS-1$
    }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.web.http.request.MultiReadHttpServletRequest

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.