Apache CXF API

org.apache.cxf.transport
Interface Session

All Known Implementing Classes:
HTTPSession

public interface Session

A Session which can be bound to HTTP, WS-Adddressing, etc.

Author:
Dan Diephouse

Method Summary
 Object get(Object key)
          Get a variable from the session by the key.
 void put(Object key, Object value)
          Put a variable into the session with a key.
 

Method Detail

get

Object get(Object key)
Get a variable from the session by the key.

Parameters:
key -
Returns:
Value

put

void put(Object key,
         Object value)
Put a variable into the session with a key.

Parameters:
key -
value -

Apache CXF API

Apache CXF