| java.lang.Object org.jaffa.security.SecurityContextStack
SecurityContextStack | class SecurityContextStack (Code) | | This is a simple push on, pop off stack implementation for SecurityContext objects
|
getContext | public SecurityContext getContext()(Code) | | Get the context of the top of the stack
Returns the SecurityContext on the top of the stack, or null if the stack is empty |
pop | public void pop()(Code) | | Pops the SecurityContext that is on the top of the stack off
|
push | public void push(SecurityContext ctx)(Code) | | Pushes a SecurityContext on to the top of the stack
Parameters: ctx - SecurityContext to push on stack |
|
|