com.meterware.httpunit
Class GetMethodWebRequest

java.lang.Object
  |
  +--com.meterware.httpunit.WebRequest
        |
        +--com.meterware.httpunit.GetMethodWebRequest

public class GetMethodWebRequest
extends WebRequest

An HTTP request using the GET method.


Constructor Summary
GetMethodWebRequest(java.lang.String urlString)
          Constructs a web request using a specific absolute url string.
GetMethodWebRequest(java.net.URL urlBase, java.lang.String urlString)
          Constructs a web request using a base URL and a relative url string.
 
Method Summary
 java.net.URL getURL()
          Returns the final URL associated with this web request.
 
Methods inherited from class com.meterware.httpunit.WebRequest
completeRequest, getParameter, getParameterString, getParameterValues, getURLBase, getURLString, hasNoParameters, removeParameter, setParameter, setParameter
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GetMethodWebRequest

public GetMethodWebRequest(java.lang.String urlString)
Constructs a web request using a specific absolute url string.

GetMethodWebRequest

public GetMethodWebRequest(java.net.URL urlBase,
                           java.lang.String urlString)
Constructs a web request using a base URL and a relative url string.
Method Detail

getURL

public java.net.URL getURL()
                    throws java.net.MalformedURLException
Description copied from class: WebRequest
Returns the final URL associated with this web request.
Overrides:
getURL in class WebRequest