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

github-actions
2023-03-02 2e8d513c6886debce6153bd94fc5521e899efaa0
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,
12     /** the ticket provided was not valid, or the ticket did not come from an initial login and renew was set on validation. */
13     INVALID_TICKET,
14     /** the ticket provided was valid, but the service specified did not match the service associated with the ticket. */
15     INVALID_SERVICE,
16     /** an internal error occurred during ticket validation */
17     INTERNAL_ERROR
18 }