| | |
| | | import org.keycloak.events.EventBuilder; |
| | | import org.keycloak.models.KeycloakSession; |
| | | import org.keycloak.models.RealmModel; |
| | | import org.keycloak.protocol.cas.endpoints.AuthorizationEndpoint; |
| | | import org.keycloak.protocol.cas.endpoints.LogoutEndpoint; |
| | | import org.keycloak.protocol.cas.endpoints.ServiceValidateEndpoint; |
| | | import org.keycloak.protocol.cas.endpoints.ValidateEndpoint; |
| | | import org.keycloak.protocol.cas.endpoints.*; |
| | | import org.keycloak.services.resources.RealmsResource; |
| | | |
| | | import javax.ws.rs.Path; |
| | | import javax.ws.rs.core.Context; |
| | | import javax.ws.rs.core.HttpHeaders; |
| | | import javax.ws.rs.core.UriBuilder; |
| | | import javax.ws.rs.core.UriInfo; |
| | | import javax.ws.rs.core.*; |
| | | |
| | | public class CASLoginProtocolService { |
| | | private RealmModel realm; |
| | | private EventBuilder event; |
| | | |
| | | @Context |
| | | private UriInfo uriInfo; |
| | | |
| | | @Context |
| | | private KeycloakSession session; |
| | |
| | | return endpoint; |
| | | } |
| | | |
| | | @Path("samlValidate") |
| | | public Object validateSaml11() { |
| | | SamlValidateEndpoint endpoint = new SamlValidateEndpoint(realm, event); |
| | | ResteasyProviderFactory.getInstance().injectProperties(endpoint); |
| | | return endpoint; |
| | | } |
| | | |
| | | @Path("serviceValidate") |
| | | public Object serviceValidate() { |
| | | ServiceValidateEndpoint endpoint = new ServiceValidateEndpoint(realm, event); |
| | |
| | | |
| | | @Path("proxyValidate") |
| | | public Object proxyValidate() { |
| | | return null; |
| | | //TODO implement |
| | | return serviceValidate(); |
| | | } |
| | | |
| | | @Path("proxy") |
| | | public Object proxy() { |
| | | return null; |
| | | return Response.serverError().entity("Not implemented").build(); |
| | | } |
| | | |
| | | @Path("p3/serviceValidate") |