org.apache.tapestry5.annotations
Annotation Type RequestParameter


@Target(value=PARAMETER)
@Retention(value=RUNTIME)
@Documented
@UseWith(value={COMPONENT,MIXIN,PAGE})
public @interface RequestParameter

Annotation that may be placed on parameters of event handler methods. Annotated parameters will be extracted from the request, then coerced to the type of the parameter. Such parameters are separate from ordinary context parameters (extracted from the Request path). Typically, this is used when client-side JavaScript adds a query parameter to a request to communicate some information from the client side to the server side.

Individual fields may also be directly mapped to query parameters using the ActivationRequestParameter annotation.

Since:
5.2.0
See Also:
OnEventWorker

Required Element Summary
 String value
          The name of the query parameter to extract from the request.
 
Optional Element Summary
 boolean allowBlank
          If false (the default), then an exception is thrown when the query parameter is read, if it is blank (null or an empty string).
 

Element Detail

value

public abstract String value
The name of the query parameter to extract from the request.

allowBlank

public abstract boolean allowBlank
If false (the default), then an exception is thrown when the query parameter is read, if it is blank (null or an empty string). If true, then blank values are allowed.

Default:
false


Copyright © 2003-2012 The Apache Software Foundation.