java.lang.Object
com.aoapps.lang.attribute.Attribute.Name<T>
com.aoapps.servlet.attribute.AttributeEE.Name<T>
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AttributeEE.Jstl
- Enclosing class:
AttributeEE<C,
T>
A name without any specific scope or context.
AttributeEE
: Has name, still needs scope or context.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Supports attributes in contexts of typesServletContext
,ServletRequest
,HttpSession
, andJspContext
.static class
Supports scope attributes in scopes of contexts typesServletContext
,ServletRequest
,HttpSession
, andJspContext
.Nested classes/interfaces inherited from class com.aoapps.lang.attribute.Attribute.Name
Attribute.Name.ContextFactory<C,
T>, Attribute.Name.ScopeFactory<C, T> -
Field Summary
Fields inherited from class com.aoapps.lang.attribute.Attribute.Name
name
-
Method Summary
Modifier and TypeMethodDescriptionAttributeEE
: Uses the application scope and this name, still needs context.<C> AttributeEE
<C, T> context
(C context) AttributeEE
: Uses the given context and this name.context
(HttpSession session) AttributeEE
: Uses the given session context.context
(JspContext jspContext) AttributeEE
: Uses the given page context.context
(ServletContext servletContext) AttributeEE
: Uses the given application context.context
(ServletRequest request) AttributeEE
: Uses the given request context.page()
AttributeEE
: Uses the page scope and this name, still needs context.request()
AttributeEE
: Uses the request scope and this name, still needs context.<C> ScopeEE.Attribute
<C, T> AttributeEE
: Uses the given scope and this name, still needs context.<C> ScopeEE.Attribute
<C, T> AttributeEE
: Uses the given scope and this name, still needs context.<C> ScopeEE.Attribute
<C, T> AttributeEE
: Uses the given scope (located by content type) and this name, still needs context.session()
AttributeEE
: Uses the session scope and this name, still needs context.Methods inherited from class com.aoapps.lang.attribute.Attribute.Name
getName
-
Method Details
-
scope
AttributeEE
: Uses the given scope (located by content type) and this name, still needs context.- Overrides:
scope
in classAttribute.Name<T>
- Parameters:
contextType
- The context type must be one ofServletContext
,ServletRequest
,HttpSession
,JspContext
, or a type registered asAttribute.Name.ScopeFactory
that returns a instance ofScopeEE.Attribute
.
-
scope
AttributeEE
: Uses the given scope and this name, still needs context. -
scope
AttributeEE
: Uses the given scope and this name, still needs context.- Overrides:
scope
in classAttribute.Name<T>
- Parameters:
scope
- Must be an instance ofScopeEE
-
application
AttributeEE
: Uses the application scope and this name, still needs context. -
request
AttributeEE
: Uses the request scope and this name, still needs context. -
session
AttributeEE
: Uses the session scope and this name, still needs context. -
page
AttributeEE
: Uses the page scope and this name, still needs context. -
context
AttributeEE
: Uses the given context and this name.- Overrides:
context
in classAttribute.Name<T>
- Type Parameters:
C
- The context must be one ofServletContext
,ServletRequest
,HttpSession
,JspContext
, or a type registered asAttribute.Name.ContextFactory
that returns a instance ofAttributeEE
.
-
context
AttributeEE
: Uses the given application context. -
context
AttributeEE
: Uses the given request context. -
context
AttributeEE
: Uses the given session context. -
context
AttributeEE
: Uses the given page context.
-