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