From 1d555165b0902de4ad2737e78e9eb00eabeab16b Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Tue, 19 Aug 2003 14:43:01 +0000 Subject: [PATCH] Javadoc fixes. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2039 b35dd754-fafc-0310-a699-88a17e54d16e --- .../org/jivesoftware/smack/SSLXMPPConnection.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/org/jivesoftware/smack/SSLXMPPConnection.java b/source/org/jivesoftware/smack/SSLXMPPConnection.java index 13234ee31..b8c8aa930 100644 --- a/source/org/jivesoftware/smack/SSLXMPPConnection.java +++ b/source/org/jivesoftware/smack/SSLXMPPConnection.java @@ -74,10 +74,24 @@ import java.security.cert.CertificateNotYetValidException; */ public class SSLXMPPConnection extends XMPPConnection { + /** + * Creates a new SSL connection to the specified host on the default + * SSL port (5223). + * + * @param host the XMPP host. + * @throws XMPPException if an error occurs making the connection. + */ public SSLXMPPConnection(String host) throws XMPPException { this(host, 5223); } + /** + * Creates a new SSL connection to the specified host on the specified port. + * + * @param host the XMPP host. + * @param port the port to use for the connection (default XMPP SSL port is 5223). + * @throws XMPPException if an error occurs making the connection. + */ public SSLXMPPConnection(String host, int port) throws XMPPException { this.host = host; this.port = port;