Package org.apache.juneau.rest.arg
Class InputStreamParserArg
java.lang.Object
org.apache.juneau.rest.arg.SimpleRestOperationArg
org.apache.juneau.rest.arg.InputStreamParserArg
- All Implemented Interfaces:
- RestOpArg
Resolves method parameters of type 
InputStreamParser on RestOp-annotated Java methods.
 The parameter value is resolved using:
   getRequest()
      .getContent()
      .getParserMatch()
      .getParser();
 
See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.apache.juneau.rest.arg.SimpleRestOperationArgresolve
- 
Constructor Details- 
InputStreamParserArgprotected InputStreamParserArg()Constructor.
 
- 
- 
Method Details- 
createStatic creator.- Parameters:
- paramInfo- The Java method parameter being resolved.
- Returns:
- A new InputStreamParserArg, ornull if the parameter type is notInputStreamParser.
 
 
-