Package | Description |
---|---|
org.eiichiro.jaguar.scope |
Component scope and context.
|
Modifier and Type | Class and Description |
---|---|
interface |
Application
@Application -annotated component is sustained in servlet context. |
interface |
Prototype
@Prototype -annotated component is constructed newly each time
component dependency graph is built and sustained in the same scope as the
owner component. |
interface |
Request
@Request -annotated component is sustained in HTTP request. |
interface |
Session
@Session -annotated component is sustained in HTTP session. |
interface |
Singleton
@Singleton -annotated component is sustained in singleton
(per-ClassLoader ) scope. |
interface |
Thread
@Thread -annotated component is sustained in thread. |
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.