Package org.apache.juneau.rest.arg
Class HasQueryArg
java.lang.Object
org.apache.juneau.rest.arg.HasQueryArg
- All Implemented Interfaces:
- RestOpArg
Resolves method parameters annotated with 
HasQuery on RestOp-annotated Java methods.
 The parameter value is resolved using:
   getRequest()
      .getQueryParams()
      .contains(
 The parameter type can be a 
See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic HasQueryArgStatic creator.resolve(RestOpSession opSession) Resolves the parameter object.
- 
Constructor Details- 
HasQueryArgConstructor.- Parameters:
- pi- The Java method parameter being resolved.
 
 
- 
- 
Method Details- 
createStatic creator.- Parameters:
- paramInfo- The Java method parameter being resolved.
- Returns:
- A new HasQueryArg, ornull if the parameter is not annotated withHasQuery.
 
- 
resolveDescription copied from interface:RestOpArgResolves the parameter object.
 
-