Class RequestBeanArg

java.lang.Object
org.apache.juneau.rest.arg.RequestBeanArg
All Implemented Interfaces:
RestOpArg

public class RequestBeanArg extends Object implements RestOpArg
Resolves method parameters annotated with Request on RestOp-annotated Java methods.

The parameter value is resolved using:

opSession .getRequest() .getRequest(meta);

meta is derived from the Request annotation and context configuration.

See Also:
  • Constructor Details

    • RequestBeanArg

      protected RequestBeanArg(ParamInfo paramInfo, AnnotationWorkList annotations)
      Constructor.
      Parameters:
      paramInfo - The Java method parameter being resolved.
      annotations - The annotations to apply to any new part parsers.
  • Method Details