org.apache.webdav.lib.methods
Class GetMethod

java.lang.Object
  |
  +--org.apache.commons.httpclient.HttpMethodBase
        |
        +--org.apache.commons.httpclient.methods.GetMethod
              |
              +--org.apache.webdav.lib.methods.GetMethod
All Implemented Interfaces:
org.apache.commons.httpclient.HttpMethod

public class GetMethod
extends org.apache.commons.httpclient.methods.GetMethod

GET Method.

Author:
Remy Maucherat, B.C. Holmes

Fields inherited from class org.apache.commons.httpclient.methods.GetMethod
fileData, memoryData, TEMP_DIR, tempDir, tempFile, useDisk
 
Fields inherited from class org.apache.commons.httpclient.HttpMethodBase
debug, followRedirects, name, parameters, path, query, queryString, requestHeaders, responseHeaders, state, statusCode, statusText
 
Fields inherited from interface org.apache.commons.httpclient.HttpMethod
PROTOCOL
 
Constructor Summary
GetMethod()
          Method constructor.
GetMethod(java.lang.String path)
          Method constructor.
GetMethod(java.lang.String path, boolean useDisk, java.lang.String tempDir)
          Method constructor.
GetMethod(java.lang.String path, boolean useDisk, java.lang.String tempDir, java.lang.String tempFile)
          Method constructor.
GetMethod(java.lang.String path, java.io.File fileData)
          Method constructor.
GetMethod(java.lang.String path, java.lang.String tempDir)
          Method constructor.
GetMethod(java.lang.String path, java.lang.String tempDir, java.lang.String tempFile)
          Method constructor.
 
Methods inherited from class org.apache.commons.httpclient.methods.GetMethod
generateQuery, getData, getDataAsString, getFileData, getTempDir, getTempFile, getUseDisk, needContentLength, parseResponse, recycle, setFileData, setTempDir, setTempFile, setUseDisk
 
Methods inherited from class org.apache.commons.httpclient.HttpMethodBase
checkNotUsed, checkUsed, followRedirects, generateHeaders, generateHeaders, generateRequestLine, generateRequestLine, getHeader, getHeaders, getHeadersHashtable, getName, getPath, getStatusCode, getStatusText, hasBeenUsed, hasResponseBody, isStreamedQuery, needExpectation, processResponseHeaders, removeHeader, setDebug, setFollowRedirects, setHeader, setParameter, setPath, setQuery, setQueryString, setState, setStatusCode, setStatusText, setUsed, streamQuery, validate
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GetMethod

public GetMethod()
Method constructor.

GetMethod

public GetMethod(java.lang.String path)
Method constructor.

GetMethod

public GetMethod(java.lang.String path,
                 java.lang.String tempDir)
Method constructor.

GetMethod

public GetMethod(java.lang.String path,
                 boolean useDisk,
                 java.lang.String tempDir)
Method constructor.

GetMethod

public GetMethod(java.lang.String path,
                 java.lang.String tempDir,
                 java.lang.String tempFile)
Method constructor.

GetMethod

public GetMethod(java.lang.String path,
                 boolean useDisk,
                 java.lang.String tempDir,
                 java.lang.String tempFile)
Method constructor.

GetMethod

public GetMethod(java.lang.String path,
                 java.io.File fileData)
Method constructor.