Package org.archive.wayback.exception

Examples of org.archive.wayback.exception.AuthenticationControlException


        wbRequest.setContext(this);
        handled = true;
        wbRequest.setContextPrefix(getAbsoluteLocalPrefix(httpRequest));
        if(authentication != null) {
          if(!authentication.isTrue(wbRequest)) {
            throw new AuthenticationControlException("Not authorized");
          }
        }

        if(exclusionFactory != null) {
          wbRequest.setExclusionFilter(exclusionFactory.get());
View Full Code Here


        wbRequest.extractHttpRequestInfo(httpRequest);
        // end of refactor

        if(getAuthentication() != null) {
          if(!getAuthentication().isTrue(wbRequest)) {
            throw new AuthenticationControlException(
                "Unauthorized", isRequestAuth());
          }
        }

        if(getExclusionFactory() != null) {
View Full Code Here

TOP

Related Classes of org.archive.wayback.exception.AuthenticationControlException

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.