org.kohsuke.stapler
Annotation Type QueryParameter


@Retention(value=RUNTIME)
@Target(value=PARAMETER)
@Documented
public @interface QueryParameter

Indicates that this parameter is bound from HTTP query parameter.

Author:
Kohsuke Kawaguchi

Required Element Summary
 java.lang.String value
          query parameter name.
 
Optional Element Summary
 boolean required
          If true, request without this header will be rejected.
 

Element Detail

value

public abstract java.lang.String value
query parameter name.

required

public abstract boolean required
If true, request without this header will be rejected.

Default:
false


Copyright © 2007. All Rights Reserved.