| java.lang.Object com.caucho.webbeans.context.ScopeContext com.caucho.webbeans.context.ConversationScope
Method Summary | |
public void | begin() | public boolean | canInject(ScopeContext scope) returns true if the argument scope can be safely injected in a
scope-instance. | public void | end() | public T | get(ComponentFactory<T> component, boolean create) Returns the current value of the component in the conversation scope. | public void | put(ComponentFactory<T> component, T value) Sets the current value of the component in the conversation scope. | public void | remove(ComponentFactory<T> component) Removes the current value of the component in the conversation scope. |
ConversationScope | public ConversationScope()(Code) | | |
begin | public void begin()(Code) | | Begins an extended conversation
|
canInject | public boolean canInject(ScopeContext scope)(Code) | | returns true if the argument scope can be safely injected in a
scope-instance.
|
end | public void end()(Code) | | Ends an extended conversation
|
get | public T get(ComponentFactory<T> component, boolean create)(Code) | | Returns the current value of the component in the conversation scope.
|
put | public void put(ComponentFactory<T> component, T value)(Code) | | Sets the current value of the component in the conversation scope.
|
remove | public void remove(ComponentFactory<T> component)(Code) | | Removes the current value of the component in the conversation scope.
|
|
|