|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=ANNOTATION_TYPE) public @interface Header
The Header
annotation represents a single header attribute of an http request.
This headers can be set in a
annotation attached to a test method.
HttpTest
HttpTest
Required Element Summary | |
---|---|
java.lang.String |
name
The name attribute represents the name of the header element which comes before
the ":" within a request header. |
java.lang.String |
value
The value attribute represents the value of the header element which comes
after the ":" within a request header. |
Element Detail |
---|
public abstract java.lang.String name
The name
attribute represents the name of the header element which comes before
the ":" within a request header.
public abstract java.lang.String value
The value
attribute represents the value of the header element which comes
after the ":" within a request header.
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |