Package net.sf.antcontrib.net.httpclient
Class PostMethodTask
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- net.sf.antcontrib.net.httpclient.AbstractMethodTask
-
- net.sf.antcontrib.net.httpclient.PostMethodTask
-
- All Implemented Interfaces:
java.lang.Cloneable
public class PostMethodTask extends AbstractMethodTask
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPostMethodTask.FilePartTypestatic classPostMethodTask.TextPartType-
Nested classes/interfaces inherited from class net.sf.antcontrib.net.httpclient.AbstractMethodTask
AbstractMethodTask.ResponseHeader
-
-
Constructor Summary
Constructors Constructor Description PostMethodTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddConfiguredFile(PostMethodTask.FilePartType file)voidaddConfiguredParameter(org.apache.commons.httpclient.NameValuePair pair)voidaddConfiguredText(PostMethodTask.TextPartType text)protected voidcleanupResources(org.apache.commons.httpclient.HttpMethodBase method)protected voidconfigureMethod(org.apache.commons.httpclient.HttpMethodBase method)protected org.apache.commons.httpclient.HttpMethodBasecreateNewMethod()voidsetContentChunked(boolean contentChunked)voidsetMultipart(boolean multipart)voidsetParameters(java.io.File parameters)-
Methods inherited from class net.sf.antcontrib.net.httpclient.AbstractMethodTask
addConfiguredHeader, addConfiguredHttpClient, addConfiguredParams, addConfiguredResponseHeader, createMethodIfNecessary, execute, setClientRefId, setDoAuthentication, setFollowRedirects, setPath, setQueryString, setResponseDataFile, setResponseDataProperty, setStatusCodeProperty, setURL
-
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
-
-
-
-
Method Detail
-
addConfiguredFile
public void addConfiguredFile(PostMethodTask.FilePartType file)
-
setMultipart
public void setMultipart(boolean multipart)
-
addConfiguredText
public void addConfiguredText(PostMethodTask.TextPartType text)
-
setParameters
public void setParameters(java.io.File parameters)
-
createNewMethod
protected org.apache.commons.httpclient.HttpMethodBase createNewMethod()
- Specified by:
createNewMethodin classAbstractMethodTask
-
addConfiguredParameter
public void addConfiguredParameter(org.apache.commons.httpclient.NameValuePair pair)
-
setContentChunked
public void setContentChunked(boolean contentChunked)
-
configureMethod
protected void configureMethod(org.apache.commons.httpclient.HttpMethodBase method)
- Overrides:
configureMethodin classAbstractMethodTask
-
cleanupResources
protected void cleanupResources(org.apache.commons.httpclient.HttpMethodBase method)
- Overrides:
cleanupResourcesin classAbstractMethodTask
-
-