public class SessionAttributeInitializingFilter extends IoFilterAdapter
IoFilter that sets initial attributes when a new
IoSession is created. By default, the attribute map is empty when
an IoSession is newly created. Inserting this filter will make
the pre-configured attributes available after this filter executes the
sessionCreated event.IoFilter.NextFilter| Constructor and Description |
|---|
SessionAttributeInitializingFilter()
Creates a new instance with no default attributes.
|
SessionAttributeInitializingFilter(Map<String,? extends Object> attributes)
Creates a new instance with the specified default attributes.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
getAttribute(String key)
Returns the value of user-defined attribute.
|
Set<String> |
getAttributeKeys()
Returns the set of keys of all user-defined attributes.
|
Object |
removeAttribute(String key)
Removes a user-defined attribute with the specified key.
|
void |
sessionCreated(IoFilter.NextFilter nextFilter,
IoSession session)
Puts all pre-configured attributes into the actual session attribute
map and forward the event to the next filter.
|
Object |
setAttribute(String key)
Sets a user defined attribute without a value.
|
Object |
setAttribute(String key,
Object value)
Sets a user-defined attribute.
|
void |
setAttributes(Map<String,? extends Object> attributes)
Sets the attribute map.
|
destroy, exceptionCaught, filterClose, filterWrite, init, inputClosed, messageReceived, messageSent, onPostAdd, onPostRemove, onPreAdd, onPreRemove, sessionClosed, sessionIdle, sessionOpened, toStringpublic SessionAttributeInitializingFilter()
setAttribute(String, Object) and setAttributes(Map).public SessionAttributeInitializingFilter(Map<String,? extends Object> attributes)
setAttribute(String, Object) and setAttributes(Map).public Object getAttribute(String key)
key - the key of the attributepublic Object setAttribute(String key, Object value)
key - the key of the attributevalue - the value of the attributepublic Object setAttribute(String key)
Boolean.TRUE.key - the key of the attributepublic Object removeAttribute(String key)
public Set<String> getAttributeKeys()
public void setAttributes(Map<String,? extends Object> attributes)
public void sessionCreated(IoFilter.NextFilter nextFilter, IoSession session) throws Exception
sessionCreated in interface IoFiltersessionCreated in class IoFilterAdapternextFilter - the IoFilter.NextFilter for this filter. You can reuse this
object until this filter is removed from the chain.session - The IoSession which has received this eventExceptionCopyright © 2004–2017 Apache MINA Project. All rights reserved.