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:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionboolean
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 Details
-
value
boolean valueIftrue
, 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
-