Class ResponseHeaderArg

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

public class ResponseHeaderArg extends Object implements RestOpArg
Resolves method parameters annotated with Header of type Value representing response headers on RestOp-annotated Java methods.

The parameter value must be of type Value that accepts a value that is then set via:

opSession .getResponse() .setOutput(name,value);

See Also: