jochen 2005/05/14 14:31:48
Modified: src/java/org/apache/xmlrpc XmlRpcClientRequestProcessor.java XmlRpcRequestProcessor.java XmlRpcResponseProcessor.java XmlRpcClientResponseProcessor.java Log: Made constructors of request and response processors public. Revision Changes Path 1.5 +8 -1 ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcClientRequestProcessor.java Index: XmlRpcClientRequestProcessor.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcClientRequestProcessor.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XmlRpcClientRequestProcessor.java 2 May 2005 04:22:21 -0000 1.4 +++ XmlRpcClientRequestProcessor.java 14 May 2005 21:31:48 -0000 1.5 @@ -33,6 +33,13 @@ public class XmlRpcClientRequestProcessor { /** + * Creates a new instance. + */ + public XmlRpcClientRequestProcessor() + { + } + + /** * Encode a request from the XmlClientRpcRequest implementation to an * output stream in the specified character encoding. * 1.8 +1 -1 ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcRequestProcessor.java Index: XmlRpcRequestProcessor.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcRequestProcessor.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- XmlRpcRequestProcessor.java 22 Apr 2005 10:25:57 -0000 1.7 +++ XmlRpcRequestProcessor.java 14 May 2005 21:31:48 -0000 1.8 @@ -36,7 +36,7 @@ /** * Creates a new instance. */ - protected XmlRpcRequestProcessor() + public XmlRpcRequestProcessor() { requestParams = new Vector(); } 1.6 +7 -0 ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcResponseProcessor.java Index: XmlRpcResponseProcessor.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcResponseProcessor.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- XmlRpcResponseProcessor.java 22 Apr 2005 10:25:57 -0000 1.5 +++ XmlRpcResponseProcessor.java 14 May 2005 21:31:48 -0000 1.6 @@ -36,6 +36,13 @@ private static final byte[] EMPTY_BYTE_ARRAY = new byte[0]; /** + * Creates a new instance. + */ + public XmlRpcResponseProcessor() + { + } + + /** * Process a successful response, and return output in the * specified encoding. * 1.4 +8 -1 ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcClientResponseProcessor.java Index: XmlRpcClientResponseProcessor.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/java/org/apache/xmlrpc/XmlRpcClientResponseProcessor.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- XmlRpcClientResponseProcessor.java 28 Apr 2005 22:38:23 -0000 1.3 +++ XmlRpcClientResponseProcessor.java 14 May 2005 21:31:48 -0000 1.4 @@ -42,6 +42,13 @@ protected boolean fault; /** + * Creates a new instance. + */ + public XmlRpcClientResponseProcessor() + { + } + + /** * Decode an XML-RPC response from the specified InputStream. * * @param is The stream from which to read the response.