mirror of https://github.com/jacekkow/keycloak-protocol-cas

Laurent Meunier
2024-06-11 655123c67bbcb1c2e3d56f3b56942d82b430112c
commit | author | age
352436 1 package org.keycloak.protocol.cas.representations;
MP 2
3 public enum CASErrorCode {
4     /** not all of the required request parameters were present */
5     INVALID_REQUEST,
6     /** failure to meet the requirements of validation specification */
7     INVALID_TICKET_SPEC,
8     /** the service is not authorized to perform proxy authentication */
9     UNAUTHORIZED_SERVICE_PROXY,
10     /** The proxy callback specified is invalid. The credentials specified for proxy authentication do not meet the security requirements */
11     INVALID_PROXY_CALLBACK,
5d7080 12     /** The proxy callback specified return with error*/
ARW 13     PROXY_CALLBACK_ERROR,
352436 14     /** the ticket provided was not valid, or the ticket did not come from an initial login and renew was set on validation. */
MP 15     INVALID_TICKET,
16     /** the ticket provided was valid, but the service specified did not match the service associated with the ticket. */
17     INVALID_SERVICE,
18     /** an internal error occurred during ticket validation */
19     INTERNAL_ERROR
20 }