Class XmlRpcClientRequestImpl

java.lang.Object
org.apache.xmlrpc.client.XmlRpcClientRequestImpl
All Implemented Interfaces:
XmlRpcRequest

public class XmlRpcClientRequestImpl extends Object implements XmlRpcRequest
Default implementation of XmlRpcRequest.
  • Field Details

    • ZERO_PARAMS

      private static final Object[] ZERO_PARAMS
    • config

      private final XmlRpcRequestConfig config
    • methodName

      private final String methodName
    • params

      private final Object[] params
  • Constructor Details

    • XmlRpcClientRequestImpl

      public XmlRpcClientRequestImpl(XmlRpcRequestConfig pConfig, String pMethodName, Object[] pParams)
      Creates a new instance.
      Parameters:
      pConfig - The request configuration.
      pMethodName - The method name being performed.
      pParams - The parameters.
      Throws:
      NullPointerException - One of the parameters is null.
    • XmlRpcClientRequestImpl

      public XmlRpcClientRequestImpl(XmlRpcRequestConfig pConfig, String pMethodName, List pParams)
      Creates a new instance.
      Parameters:
      pConfig - The request configuration.
      pMethodName - The method name being performed.
      pParams - The parameters.
      Throws:
      NullPointerException - The method name or the parameters are null.
  • Method Details