java.lang.Object
com.aoapps.lang.attribute.Context<C>
com.aoapps.servlet.attribute.ContextEE<C>
- Direct Known Subclasses:
ContextEE.Application
,ContextEE.Page
,ContextEE.Request
,ContextEE.Session
A specifically resolved context, such as
JspContext
, ServletRequest
,
HttpSession
, and ServletContext
.
AttributeEE
: Has scope and context, still needs name.
- Author:
- AO Industries, Inc.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
AttributeEE
: Has application scope and context, still needs name.static final class
AttributeEE
: Has page scope and context, still needs name.static final class
AttributeEE
: Has request scope and context, still needs name.static final class
AttributeEE
: Has session scope and context, still needs name. -
Method Summary
Modifier and TypeMethodDescriptionstatic ContextEE.Application
application
(ServletContext servletContext) AttributeEE
: Uses the given application scope and context, still needs name.abstract <T> AttributeEE
<C, T> AttributeEE
: Uses the given name within this scope and context.getScope()
Gets the scope for this context.static ContextEE.Page
page
(JspContext jspContext) AttributeEE
: Uses the given page scope and context, still needs name.static ContextEE.Request
request
(ServletRequest request) AttributeEE
: Uses the given request scope and context, still needs name.static ContextEE.Session
session
(HttpSession session) AttributeEE
: Uses the given session scope and context, still needs name.Methods inherited from class com.aoapps.lang.attribute.Context
getAttributeNames
-
Method Details
-
getScope
Gets the scope for this context. -
attribute
AttributeEE
: Uses the given name within this scope and context. -
page
AttributeEE
: Uses the given page scope and context, still needs name. -
request
AttributeEE
: Uses the given request scope and context, still needs name. -
session
AttributeEE
: Uses the given session scope and context, still needs name. -
application
AttributeEE
: Uses the given application scope and context, still needs name.
-