Class WindowScope
- java.lang.Object
-
- org.joinfaces.autoconfigure.icefaces.WindowScope
-
- All Implemented Interfaces:
org.springframework.beans.factory.config.Scope
@ParametersAreNonnullByDefault public class WindowScope extends Object implements org.springframework.beans.factory.config.Scope
Spring scope
implementation which delegates to ICEfaces'WindowScopeManager
.
-
-
Constructor Summary
Constructors Constructor Description WindowScope()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
get(String name, org.springframework.beans.factory.ObjectFactory<?> objectFactory)
String
getConversationId()
void
registerDestructionCallback(String name, Runnable runnable)
Object
remove(String name)
Object
resolveContextualObject(String name)
-
-
-
Method Detail
-
get
public Object get(String name, org.springframework.beans.factory.ObjectFactory<?> objectFactory)
- Specified by:
get
in interfaceorg.springframework.beans.factory.config.Scope
-
remove
public Object remove(String name)
- Specified by:
remove
in interfaceorg.springframework.beans.factory.config.Scope
-
registerDestructionCallback
public void registerDestructionCallback(String name, Runnable runnable)
- Specified by:
registerDestructionCallback
in interfaceorg.springframework.beans.factory.config.Scope
-
resolveContextualObject
public Object resolveContextualObject(String name)
- Specified by:
resolveContextualObject
in interfaceorg.springframework.beans.factory.config.Scope
-
getConversationId
public String getConversationId()
- Specified by:
getConversationId
in interfaceorg.springframework.beans.factory.config.Scope
-
-