Class RequestViewHTTP
- java.lang.Object
-
- org.apache.jmeter.protocol.http.visualizers.RequestViewHTTP
-
- All Implemented Interfaces:
RequestView
public class RequestViewHTTP extends Object implements RequestView
Specializer panel to view a HTTP request parsed
-
-
Constructor Summary
Constructors Constructor Description RequestViewHTTP()
Pane to view HTTP request sample in view results tree
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearData()
Clear all data in panelstatic String
decodeQuery(String query)
Decode a query stringString
getLabel()
Get the label.JPanel
getPanel()
Get the panelstatic Map<String,String>
getQueryMap(String query)
void
init()
Init the panelvoid
setSamplerResult(Object objectResult)
Put the result bean to display in panel
-
-
-
Method Detail
-
init
public void init()
Description copied from interface:RequestView
Init the panel- Specified by:
init
in interfaceRequestView
-
clearData
public void clearData()
Description copied from interface:RequestView
Clear all data in panel- Specified by:
clearData
in interfaceRequestView
-
setSamplerResult
public void setSamplerResult(Object objectResult)
Description copied from interface:RequestView
Put the result bean to display in panel- Specified by:
setSamplerResult
in interfaceRequestView
- Parameters:
objectResult
- result to display
-
getQueryMap
public static Map<String,String> getQueryMap(String query)
- Parameters:
query
- query to parse for param and value pairs- Returns:
- Map params and Svalue
-
decodeQuery
public static String decodeQuery(String query)
Decode a query string- Parameters:
query
- to decode- Returns:
- a decode query string
-
getPanel
public JPanel getPanel()
Description copied from interface:RequestView
Get the panel- Specified by:
getPanel
in interfaceRequestView
- Returns:
- the panel viewer
-
getLabel
public String getLabel()
Description copied from interface:RequestView
Get the label. Use as name for bottom tab- Specified by:
getLabel
in interfaceRequestView
- Returns:
- the label's panel
-
-