| | |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponse; |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponseAuthenticationFailure; |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponseAuthenticationSuccess; |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponseProxySuccess; |
| | | import org.keycloak.protocol.cas.representations.CASServiceResponseProxyFailure; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | return response; |
| | | } |
| | | |
| | | public static CASServiceResponse createProxySuccess(String pt) { |
| | | CASServiceResponse response = new CASServiceResponse(); |
| | | CASServiceResponseProxySuccess success = new CASServiceResponseProxySuccess(); |
| | | success.setProxyTicket(pt); |
| | | response.setProxySuccess(success); |
| | | return response; |
| | | } |
| | | |
| | | public static CASServiceResponse createProxyFailure(CASErrorCode errorCode, String errorDescription) { |
| | | CASServiceResponse response = new CASServiceResponse(); |
| | | CASServiceResponseProxyFailure failure = new CASServiceResponseProxyFailure(); |
| | | failure.setCode(errorCode == null ? CASErrorCode.INTERNAL_ERROR.name() : errorCode.name()); |
| | | failure.setDescription(errorDescription); |
| | | response.setProxyFailure(failure); |
| | | |
| | | return response; |
| | | } |
| | | |
| | | public static Response createResponse(Response.Status status, MediaType mediaType, CASServiceResponse serviceResponse) { |
| | | Response.ResponseBuilder builder = Response.status(status) |
| | | .header(HttpHeaders.CONTENT_TYPE, mediaType.withCharset("utf-8")); |