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/09 10:31:51 UTC

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

dlr         2002/08/09 01:31:50

  Modified:    src/java/org/apache/xmlrpc/secure SecureWebServer.java
  Log:
  Improved ctor documentation.
  
  Revision  Changes    Path
  1.3       +16 -13    xml-rpc/src/java/org/apache/xmlrpc/secure/SecureWebServer.java
  
  Index: SecureWebServer.java
  ===================================================================
  RCS file: /home/cvs/xml-rpc/src/java/org/apache/xmlrpc/secure/SecureWebServer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- SecureWebServer.java	11 Aug 2001 10:15:52 -0000	1.2
  +++ SecureWebServer.java	9 Aug 2002 08:31:50 -0000	1.3
  @@ -90,25 +90,28 @@
       implements SecurityConstants
   {
       /**
  -      * Creates a secure web server at the specified port number.
  -      *
  -      * @param int port number of secure web server.
  -      */
  +     * Creates a secure web server configured to run on the specified
  +     * port number.
  +     *
  +     * @param int port number of secure web server.
  +     * @see #SecureWebServer(int, InetAddress)
  +     */
       public SecureWebServer (int port) throws IOException
       {
           this(port, null);
       }
   
       /**
  -      * Creates a secure web server at the specified port 
  -      * number and IP address.
  -      *
  -      * @param int port number of the secure web server
  -      * @param InetAddress ip address to bind to.
  -      */
  -    public SecureWebServer (int port, InetAddress add) throws IOException
  +     * Creates a secure web server configured to run on the specified
  +     * port number and IP address.
  +     *
  +     * @param int port number of the secure web server
  +     * @param addr The IP address to bind to.
  +     * @see org.apache.xmlrpc.WebServer#WebServer(int, InetAddress)
  +     */
  +    public SecureWebServer(int port, InetAddress addr) throws IOException
       {
  -        super(port,add);
  +        super(port, addr);
       }
   
       /**