com.acsinet_solutions.cetia4.controller.meta
Annotation Type ContextAttribute


@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Inherited
public @interface ContextAttribute

This annotation indicates a context attribute with a given name and lazy loading scheme.

Author:
Santiago Arriaga

Required Element Summary
 java.lang.String value
          The name of the attribute stored at context scope.
 
Optional Element Summary
 boolean lazyLoaded
          Sets the lazy loading policy.
 

Element Detail

value

public abstract java.lang.String value
The name of the attribute stored at context scope.

lazyLoaded

public abstract boolean lazyLoaded
Sets the lazy loading policy. If true, the object loaded must be a Map that will be wrapped in a LazyMap instance. Other lazy implementations are not currently supported.

See Also:
LazyMap
Default:
false