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

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

value

public abstract java.lang.String value
query parameter name. By default, name of the parameter.

Default:
""

required

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

Default:
false


Copyright © 2008. All Rights Reserved.