dlr 2002/08/26 13:19:22 Modified: src/java/org/apache/xmlrpc XmlRpcRequest.java Log: User name is two words, so its signature and variable names should reflect this. Revision Changes Path 1.2 +5 -5 xml-rpc/src/java/org/apache/xmlrpc/XmlRpcRequest.java Index: XmlRpcRequest.java =================================================================== RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/XmlRpcRequest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- XmlRpcRequest.java 26 Aug 2002 17:41:57 -0000 1.1 +++ XmlRpcRequest.java 26 Aug 2002 20:19:22 -0000 1.2 @@ -67,15 +67,15 @@ { protected final String methodName; protected final Vector parameters; - protected final String username; + protected final String userName; protected final String password; public XmlRpcRequest(String methodName, Vector parameters, - String username, String password) + String userName, String password) { this.parameters = parameters; this.methodName = methodName; - this.username = username; + this.userName = userName; this.password = password; } @@ -94,9 +94,9 @@ return methodName; } - public String getUsername() + public String getUserName() { - return username; + return userName; } public String getPassword()