public interface IHttpRequestResponse
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
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.