You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by mp...@apache.org on 2002/10/08 10:08:01 UTC

cvs commit: jakarta-turbine-2/src/java/org/apache/turbine/services/xmlrpc XmlRpcService.java

mpoeschl    2002/10/08 01:08:01

  Modified:    src/java/org/apache/turbine/services/xmlrpc
                        XmlRpcService.java
  Log:
  javadocs
  
  Revision  Changes    Path
  1.3       +17 -9     jakarta-turbine-2/src/java/org/apache/turbine/services/xmlrpc/XmlRpcService.java
  
  Index: XmlRpcService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/xmlrpc/XmlRpcService.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XmlRpcService.java	14 Aug 2002 17:08:00 -0000	1.2
  +++ XmlRpcService.java	8 Oct 2002 08:08:01 -0000	1.3
  @@ -84,8 +84,7 @@
        * @param methodName A String with the method name.
        * @param params A Vector with the parameters.
        * @return An Object.
  -     * @exception XmlRpcException.
  -     * @exception IOException.
  +     * @exception TurbineException
        */
       public Object executeRpc(URL url,
                                String methodName,
  @@ -102,8 +101,7 @@
        * @param methodName A String with the method name.
        * @param params A Vector with the parameters.
        * @return An Object.
  -     * @exception XmlRpcException.
  -     * @exception IOException.
  +     * @exception TurbineException
        */
       public Object executeAuthenticatedRpc(URL url,
                                String username,
  @@ -118,8 +116,8 @@
        * @param handlerName The name under which we want
        * to register the service
        * @param handler The handler object
  -     * @exception XmlRpcException.
  -     * @exception IOException.
  +     * @exception XmlRpcException
  +     * @exception IOException
        */
       public void registerHandler(String handlerName, Object handler)
           throws XmlRpcException,
  @@ -130,8 +128,8 @@
        * the XmlRpc Server part.
        *
        * @param handler The handler object
  -     * @exception XmlRpcException.
  -     * @exception IOException.
  +     * @exception XmlRpcException
  +     * @exception IOException
        */
       public void registerHandler(Object handler)
           throws XmlRpcException,
  @@ -180,6 +178,7 @@
        * @param sourceFileName
        * @param destinationLocationProperty
        * @param destinationFileName
  +     * @throws Exception
        */
       public void send(String serverURL,
                        String sourceLocationProperty,
  @@ -198,6 +197,7 @@
        * @param sourceFileName
        * @param destinationLocationProperty
        * @param destinationFileName
  +     * @throws Exception
        */
       public void send(String serverURL,
                        String username,
  @@ -216,6 +216,7 @@
        * @param sourceFileName
        * @param destinationLocationProperty
        * @param destinationFileName
  +     * @throws Exception
        */
       public void get(String serverURL,
                       String sourceLocationProperty,
  @@ -235,6 +236,7 @@
        * @param sourceFileName
        * @param destinationLocationProperty
        * @param destinationFileName
  +     * @throws Exception
        */
       public void get(String serverURL,
                       String username,
  @@ -252,6 +254,7 @@
        * @param serverURL
        * @param sourceLocationProperty
        * @param sourceFileName
  +     * @throws Exception
        */
       public void remove(String serverURL,
                          String sourceLocationProperty,
  @@ -267,6 +270,7 @@
        * @param password
        * @param sourceLocationProperty
        * @param sourceFileName
  +     * @throws Exception
        */
       public void remove(String serverURL,
                          String username,
  @@ -277,6 +281,8 @@
   
       /**
        * Switch client filtering on/off.
  +     *
  +     * @param state
        * @see #acceptClient(java.lang.String)
        * @see #denyClient(java.lang.String)
        */
  @@ -288,6 +294,7 @@
        * call setParanoid(true) in order for this to have
        * any effect.
        *
  +     * @param address
        * @see #denyClient(java.lang.String)
        * @see #setParanoid(boolean)
        */
  @@ -298,6 +305,7 @@
        * contain '*' as wildcard character, e.g. "192.168.*.*". You must call
        * setParanoid(true) in order for this to have any effect.
        *
  +     * @param address
        * @see #acceptClient(java.lang.String)
        * @see #setParanoid(boolean)
        */
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>