Package org.apereo.cas.rest.factory
Interface ServiceTicketResourceEntityResponseFactory
-
- All Superinterfaces:
org.springframework.core.Ordered
- All Known Implementing Classes:
CasProtocolServiceTicketResourceEntityResponseFactory,CompositeServiceTicketResourceEntityResponseFactory
public interface ServiceTicketResourceEntityResponseFactory extends org.springframework.core.Ordered- Since:
- 5.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<java.lang.String>build(java.lang.String ticketGrantingTicket, org.apereo.cas.authentication.principal.WebApplicationService service, org.apereo.cas.authentication.AuthenticationResult authenticationResult)Build response response entity.booleansupports(org.apereo.cas.authentication.principal.WebApplicationService service, org.apereo.cas.authentication.AuthenticationResult authenticationResult)Supports boolean.
-
-
-
Method Detail
-
build
org.springframework.http.ResponseEntity<java.lang.String> build(java.lang.String ticketGrantingTicket, org.apereo.cas.authentication.principal.WebApplicationService service, org.apereo.cas.authentication.AuthenticationResult authenticationResult)Build response response entity.- Parameters:
ticketGrantingTicket- the ticket granting ticketservice- the serviceauthenticationResult- the authentication result- Returns:
- the response entity
-
supports
boolean supports(org.apereo.cas.authentication.principal.WebApplicationService service, org.apereo.cas.authentication.AuthenticationResult authenticationResult)Supports boolean.- Parameters:
service- the serviceauthenticationResult- the authentication result- Returns:
- true/false
-
-