Package org.apache.axis2.transport.http
Class HttpTransportProperties
- java.lang.Object
-
- org.apache.axis2.transport.http.HttpTransportProperties
-
- Direct Known Subclasses:
HttpTransportPropertiesImpl
public abstract class HttpTransportProperties extends Object
Utility bean for setting transport properties in runtime.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HttpTransportProperties.MailProperties
Deprecated.org.apache.axis2.transport.http.HttpTransportProperties.MailProperties has been deprecated and user are encourage the use of java.util.Properties instead.static class
HttpTransportProperties.ProxyProperties
-
Constructor Summary
Constructors Constructor Description HttpTransportProperties()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
getChunked()
abstract Object
getHttpVersion()
String
getProtocol()
void
setChunked(boolean chunked)
abstract void
setHttpVersion(Object httpVerion)
void
setProtocol(String protocol)
-
-
-
Field Detail
-
chunked
protected boolean chunked
-
protocol
protected String protocol
-
-
Method Detail
-
setHttpVersion
public abstract void setHttpVersion(Object httpVerion)
-
getHttpVersion
public abstract Object getHttpVersion()
-
getChunked
public boolean getChunked()
-
getProtocol
public String getProtocol()
-
setChunked
public void setChunked(boolean chunked)
-
setProtocol
public void setProtocol(String protocol)
-
-