javax.ws.rs
Annotation Type MatrixParam


@Target(value=PARAMETER)
@Retention(value=RUNTIME)
public @interface MatrixParam

Binds a URI matrix parameter to a Java method parameter. The value is URL decoded unless this is disabled using the Encoded annotation. A default value can be specified using the DefaultValue annotation. The type of the annotated parameter must either:

See Also:
DefaultValue, Encoded

Required Element Summary
 java.lang.String value
          Defines the name of the URI matrix parameter whose value will be used to initialize the value of the annotated method argument, class field or bean property.
 

Element Detail

value

public abstract java.lang.String value
Defines the name of the URI matrix parameter whose value will be used to initialize the value of the annotated method argument, class field or bean property.