Module org.apache.wicket.devutils
Annotation Interface StatelessComponent
Annotation for wicket components that you want to be sure remain stateless during the development
cycle. Can be attached to pages and components.
Note: this annotation does not make the component stateless or affect it's
statelessness in any way. This annotation should be used in combination with
StatelessChecker to give you runtime warning if you inadvertantly made a page or
component stateful.
- Author:
- Marat Radchenko
- See Also:
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
Can be set tofalse
to disable stateless (this is useful if stateful component inherits from stateless one).
-
Element Details
-
enabled
boolean enabledCan be set tofalse
to disable stateless (this is useful if stateful component inherits from stateless one).- Default:
- true
-