Package org.openrdf.http.protocol.cas

Examples of org.openrdf.http.protocol.cas.AuthFailure


        }

        return true;
      }
      else if (serviceResponse instanceof AuthFailure) {
        AuthFailure authFailure = (AuthFailure)serviceResponse;
        response.setStatus(Status.CLIENT_ERROR_UNAUTHORIZED, authFailure.getMessage());
      }
      else {
        logger.warn("Unexpected response from CAS server ({}): {}", serviceResponse.getClass(),
            serviceResponse);
        response.setStatus(Status.SERVER_ERROR_INTERNAL, "CAS server communication problem");
View Full Code Here

TOP

Related Classes of org.openrdf.http.protocol.cas.AuthFailure

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.