Package org.apache.xmlrpc
Interface XmlRpcConfig
-
- All Known Subinterfaces:
XmlRpcClientConfig,XmlRpcHttpClientConfig,XmlRpcHttpConfig,XmlRpcHttpRequestConfig,XmlRpcHttpServerConfig,XmlRpcLocalClientConfig,XmlRpcRequestConfig,XmlRpcServerConfig,XmlRpcStreamConfig,XmlRpcStreamRequestConfig
- All Known Implementing Classes:
RequestData,XmlRpcClientConfigImpl,XmlRpcConfigImpl,XmlRpcHttpRequestConfigImpl,XmlRpcServerConfigImpl
public interface XmlRpcConfigA common base interface forXmlRpcClientConfig, andXmlRpcServerConfig.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.TimeZonegetTimeZone()Returns the timezone, which is used to interpret date/time values.booleanisEnabledForExtensions()Returns, whether support for extensions are enabled.
-
-
-
Method Detail
-
isEnabledForExtensions
boolean isEnabledForExtensions()
Returns, whether support for extensions are enabled. By default, extensions are disabled and your client is interoperable with other XML-RPC implementations. Interoperable XML-RPC implementations are those, which are compliant to the XML-RPC Specification.- Returns:
- Whether extensions are enabled or not.
-
getTimeZone
java.util.TimeZone getTimeZone()
Returns the timezone, which is used to interpret date/time values. Defaults toTimeZone.getDefault().
-
-