Package org.apache.tapestry5.annotations
Annotation Type UnknownActivationContextCheck
-
@Target(TYPE) @Retention(RUNTIME) @Documented @UseWith(PAGE) public @interface UnknownActivationContextCheck
A marker annotation that indicates that the page in question may only be accessed with a exact activation context.- Since:
- 5.4
- See Also:
MetaDataConstants.UNKNOWN_ACTIVATION_CONTEXT_CHECK
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description boolean
value
Iftrue
, the default, the framework will check for an exact (number and type of parameters) activation context method and if not found will respond with a 404 Not Found status code, iffalse
the activation context is ignored as it was before 5.4 release.
-
-
-
Element Detail
-
value
boolean value
Iftrue
, the default, the framework will check for an exact (number and type of parameters) activation context method and if not found will respond with a 404 Not Found status code, iffalse
the activation context is ignored as it was before 5.4 release.- Default:
- true
-
-