You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rpc-dev@xml.apache.org by dl...@apache.org on 2002/08/21 11:08:02 UTC

cvs commit: xml-rpc/src/java/org/apache/xmlrpc AuthenticatedXmlRpcHandler.java

dlr         2002/08/21 02:08:02

  Modified:    src/java/org/apache/xmlrpc AuthenticatedXmlRpcHandler.java
  Log:
  Made note of the new org.apache.xmlrpc.AuthenticationFailed class and
  its relationship to this interface.
  
  Revision  Changes    Path
  1.3       +8 -1      xml-rpc/src/java/org/apache/xmlrpc/AuthenticatedXmlRpcHandler.java
  
  Index: AuthenticatedXmlRpcHandler.java
  ===================================================================
  RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/AuthenticatedXmlRpcHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- AuthenticatedXmlRpcHandler.java	20 Mar 2002 15:11:03 -0000	1.2
  +++ AuthenticatedXmlRpcHandler.java	21 Aug 2002 09:08:02 -0000	1.3
  @@ -61,12 +61,19 @@
    * An XML-RPC handler that also handles user authentication.
    *
    * @author <a href="mailto:hannes@apache.org">Hannes Wallnoefer</a>
  + * @see org.apache.xmlrpc.AuthenticationFailed
    * @version $Id$
    */
   public interface AuthenticatedXmlRpcHandler
   {
       /**
        * Return the result, or throw an Exception if something went wrong.
  +     *
  +     * @throws AuthenticationFailed If authentication fails, an
  +     * exception marked using the {@link
  +     * org.apache.xmlrpc.AuthenticationFailed} interface must be
  +     * thrown.
  +     * @see org.apache.xmlrpc.AuthenticationFailed
        */
       public Object execute(String method, Vector params, String user,
               String password)