Package org.apache.xml.security.stax.ext
Interface SecurityContext
-
- All Superinterfaces:
SecurityEventListener
- All Known Subinterfaces:
InboundSecurityContext
,OutboundSecurityContext
- All Known Implementing Classes:
InboundSecurityContextImpl
,OutboundSecurityContextImpl
public interface SecurityContext extends SecurityEventListener
- Version:
- $Revision: $ $Date: $
- Author:
- $Author: $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addSecurityEventListener(SecurityEventListener securityEventListener)
Registers a SecurityEventListener to receive Security-Events<T> T
get(String key)
<T> List<T>
getAsList(Object key)
<T,U>
Map<T,U>getAsMap(Object key)
<T> void
put(String key, T value)
<T> void
putAsList(Object key, T value)
<T,U>
voidputAsMap(Object key, T mapKey, U mapValue)
<T extends List>
voidputList(Object key, T value)
<T> T
remove(String key)
-
Methods inherited from interface org.apache.xml.security.stax.securityEvent.SecurityEventListener
registerSecurityEvent
-
-
-
-
Method Detail
-
put
<T> void put(String key, T value)
-
get
<T> T get(String key)
-
remove
<T> T remove(String key)
-
putAsList
<T> void putAsList(Object key, T value)
-
putAsMap
<T,U> void putAsMap(Object key, T mapKey, U mapValue)
-
addSecurityEventListener
void addSecurityEventListener(SecurityEventListener securityEventListener)
Registers a SecurityEventListener to receive Security-Events- Parameters:
securityEventListener
- The SecurityEventListener
-
-