Interface TestandtargetHttpParameters
- 
public interface TestandtargetHttpParametersAbstracts the parameters to be sent in a Test and Target Http API call 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getEntityContent()Byte array containing the entity content.java.lang.StringgetEntityContentType()Content type for the entity content.java.util.Map<java.lang.String,java.lang.String>getQueryParameters()Return the query parameters to be used in the API call 
 - 
 
- 
- 
Method Detail
- 
getQueryParameters
java.util.Map<java.lang.String,java.lang.String> getQueryParameters()
Return the query parameters to be used in the API call- Returns:
 - a 
Mapcontaining the query parameters 
 
- 
getEntityContent
byte[] getEntityContent()
Byte array containing the entity content. May benullif the method does not support sending a request entity- Returns:
 - byte array with the entity content or 
null 
 
- 
getEntityContentType
java.lang.String getEntityContentType()
Content type for the entity content. May benullif the method does not support sending a request entity- Returns:
 - a 
Stringcontaining the content type of the request entity ornull 
 
 - 
 
 -