|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IHttpRequestResponse
This interface is used to retrieve and update details about HTTP messages. Note: The setter methods generally can only be used before the message has been processed, and not in read-only contexts. The getter methods relating to response details can only be used after the request has been issued.
Method Summary | |
---|---|
java.lang.String |
getComment()
This method is used to retrieve the user-annotated comment for this item, if applicable. |
java.lang.String |
getHighlight()
This method is used to retrieve the user-annotated highlight for this item, if applicable. |
IHttpService |
getHttpService()
This method is used to retrieve the HTTP service for this request / response. |
byte[] |
getRequest()
This method is used to retrieve the request message. |
byte[] |
getResponse()
This method is used to retrieve the response message. |
void |
setComment(java.lang.String comment)
This method is used to update the user-annotated comment for this item. |
void |
setHighlight(java.lang.String color)
This method is used to update the user-annotated highlight for this item. |
void |
setHttpService(IHttpService httpService)
This method is used to update the HTTP service for this request / response. |
void |
setRequest(byte[] message)
This method is used to update the request message. |
void |
setResponse(byte[] message)
This method is used to update the response message. |
Method Detail |
---|
byte[] getRequest()
void setRequest(byte[] message)
message
- The new request message.byte[] getResponse()
void setResponse(byte[] message)
message
- The new response message.java.lang.String getComment()
void setComment(java.lang.String comment)
comment
- The comment to be assigned to this item.java.lang.String getHighlight()
void setHighlight(java.lang.String color)
color
- The highlight color to be assigned to this item. Accepted
values are: red, orange, yellow, green, cyan, blue, pink, magenta, gray,
or a null String to clear any existing highlight.IHttpService getHttpService()
IHttpService
object containing details of the HTTP service.void setHttpService(IHttpService httpService)
httpService
- An
IHttpService
object containing details of the new HTTP
service.
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |