Package org.apereo.cas.rest.factory
Interface TicketGrantingTicketResourceEntityResponseFactory
-
- All Known Implementing Classes:
DefaultTicketGrantingTicketResourceEntityResponseFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TicketGrantingTicketResourceEntityResponseFactory- 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(org.apereo.cas.ticket.TicketGrantingTicket ticketGrantingTicket, javax.servlet.http.HttpServletRequest request)Build response response entity.
-
-
-
Method Detail
-
build
org.springframework.http.ResponseEntity<java.lang.String> build(org.apereo.cas.ticket.TicketGrantingTicket ticketGrantingTicket, javax.servlet.http.HttpServletRequest request) throws java.lang.ExceptionBuild response response entity.- Parameters:
ticketGrantingTicket- the ticket granting ticketrequest- the request- Returns:
- the response entity
- Throws:
java.lang.Exception- the exception
-
-