java.lang.Object
com.aoapps.lang.attribute.Scope<C>
com.aoapps.servlet.attribute.ScopeEE<C>
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ScopeEE.Application
,ScopeEE.Page
,ScopeEE.Request
,ScopeEE.Session
The most broad concept is scope, including page, request, session, and application.
AttributeEE
: Has scope, still needs context and name.
- Author:
- AO Industries, Inc.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
AttributeEE
: Has application scope, still needs context and name.static class
AttributeEE
: Has scope and name, still needs context.static final class
AttributeEE
: Has page scope, still needs context and name.static final class
AttributeEE
: Has request scope, still needs context and name.static final class
AttributeEE
: Has session scope, still needs context and name. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ScopeEE.Application
AttributeEE
: Uses the application scope, still needs context and name.static final ScopeEE.Page
AttributeEE
: Uses the page scope, still needs context and name.static final ScopeEE.Request
AttributeEE
: Uses the request scope, still needs context and name.static final ScopeEE.Session
AttributeEE
: Uses the session scope, still needs context and name. -
Method Summary
Modifier and TypeMethodDescriptionabstract <T> ScopeEE.Attribute
<C, T> AttributeEE
: Uses the given name within this scope, still needs context.AttributeEE
: Uses the given context within this scope, still needs name.
-
Field Details
-
PAGE
AttributeEE
: Uses the page scope, still needs context and name. -
REQUEST
AttributeEE
: Uses the request scope, still needs context and name. -
SESSION
AttributeEE
: Uses the session scope, still needs context and name. -
APPLICATION
AttributeEE
: Uses the application scope, still needs context and name.
-
-
Method Details
-
context
AttributeEE
: Uses the given context within this scope, still needs name. -
attribute
AttributeEE
: Uses the given name within this scope, still needs context.
-