@Controller(value="singleSignOnSessionsReportController")
@RequestMapping(value="/status/ssosessions")
public class SingleSignOnSessionsReportController
extends java.lang.Object
Constructor and Description |
---|
SingleSignOnSessionsReportController()
Instantiates a new Single sign on sessions report resource.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,java.lang.Object> |
destroySsoSession(java.lang.String ticketGrantingTicket)
Endpoint for destroying a single SSO Session.
|
java.util.Map<java.lang.String,java.lang.Object> |
destroySsoSessions(java.lang.String type)
Endpoint for destroying SSO Sessions.
|
org.springframework.web.context.request.async.WebAsyncTask<java.util.Map<java.lang.String,java.lang.Object>> |
getSsoSessions(java.lang.String type)
Endpoint for getting SSO Sessions in JSON format.
|
void |
setAuthenticationSystemSupport(AuthenticationSystemSupport authenticationSystemSupport) |
void |
setCentralAuthenticationService(CentralAuthenticationService centralAuthenticationService) |
org.springframework.web.servlet.ModelAndView |
showSsoSessions()
Show sso sessions.
|
public SingleSignOnSessionsReportController()
@RequestMapping(value="/getSsoSessions", method=GET) @ResponseBody public org.springframework.web.context.request.async.WebAsyncTask<java.util.Map<java.lang.String,java.lang.Object>> getSsoSessions(@RequestParam(defaultValue="ALL") java.lang.String type)
type
- the type@RequestMapping(value="/destroySsoSession", method=POST) @ResponseBody public java.util.Map<java.lang.String,java.lang.Object> destroySsoSession(@RequestParam java.lang.String ticketGrantingTicket)
ticketGrantingTicket
- the ticket granting ticket@RequestMapping(value="/destroySsoSessions", method=POST) @ResponseBody public java.util.Map<java.lang.String,java.lang.Object> destroySsoSessions(@RequestParam(defaultValue="ALL") java.lang.String type)
type
- the type@RequestMapping(method=GET) public org.springframework.web.servlet.ModelAndView showSsoSessions() throws java.lang.Exception
java.lang.Exception
- thrown during json processingpublic void setCentralAuthenticationService(CentralAuthenticationService centralAuthenticationService)
public void setAuthenticationSystemSupport(AuthenticationSystemSupport authenticationSystemSupport)