@RestController(value="cuba_IdpServiceController")
@RequestMapping(value="service",
produces="application/json; charset=UTF-8")
public class IdpServiceController
extends java.lang.Object
| Constructor and Description |
|---|
IdpServiceController() |
| Modifier and Type | Method and Description |
|---|---|
IdpSession |
activateServiceProviderTicket(java.lang.String serviceProviderTicket,
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response) |
IdpSession |
getSession(java.lang.String idpSessionId,
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response) |
void |
pingSession(java.lang.String idpSessionId,
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response) |
void |
removeSession(java.lang.String idpSessionId,
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response) |
@RequestMapping(value="activate",
method=POST)
public IdpSession activateServiceProviderTicket(@RequestParam(value="serviceProviderTicket")
java.lang.String serviceProviderTicket,
@RequestParam(value="trustedServicePassword")
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response)
@RequestMapping(value="get",
method=GET)
public IdpSession getSession(@RequestParam(value="idpSessionId")
java.lang.String idpSessionId,
@RequestParam(value="trustedServicePassword")
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response)
@RequestMapping(value="ping",
method=POST)
public void pingSession(@RequestParam(value="idpSessionId")
java.lang.String idpSessionId,
@RequestParam(value="trustedServicePassword")
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response)
@RequestMapping(value="remove",
method=POST)
public void removeSession(@RequestParam(value="idpSessionId")
java.lang.String idpSessionId,
@RequestParam(value="trustedServicePassword")
java.lang.String trustedServicePassword,
javax.servlet.http.HttpServletResponse response)