From ffa3b41d5e79fb506863c194b050223c48fa5a90 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Thu, 05 Mar 2015 17:26:32 +0000
Subject: [PATCH] Fix java doc and comments

---
 opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Server.java |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Server.java b/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Server.java
index 93dcddd..746d594 100644
--- a/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Server.java
+++ b/opendj-ldap-sdk-examples/src/main/java/org/forgerock/opendj/examples/Server.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2009-2010 Sun Microsystems, Inc.
- *      Portions Copyright 2011-2014 ForgeRock AS
+ *      Portions Copyright 2011-2015 ForgeRock AS
  */
 
 package org.forgerock.opendj.examples;
@@ -50,7 +50,6 @@
  * An LDAP directory server which exposes data contained in an LDIF file. This
  * is implementation is very simple and is only intended as an example:
  * <ul>
- * <li>It does not support SSL connections
  * <li>It does not support StartTLS
  * <li>It does not support Abandon or Cancel requests
  * <li>Very basic authentication and authorization support.
@@ -58,7 +57,7 @@
  * This example takes the following command line parameters:
  *
  * <pre>
- *  &lt;listenAddress> &lt;listenPort> [&lt;ldifFile>]
+ *  &lt;listenAddress> &lt;listenPort> &lt;ldifFile> [&lt;keyStoreFile> &lt;keyStorePassword> &lt;certNickname>]
  * </pre>
  */
 public final class Server {
@@ -67,8 +66,8 @@
      * Main method.
      *
      * @param args
-     *            The command line arguments: listen address, listen port,
-     *            ldifFile
+     *            The command line arguments: listen address, listen port, ldifFile,
+     *            and optionally: key store, key store password and certificate nick name
      */
     public static void main(final String[] args) {
         if (args.length != 3 && args.length != 6) {

--
Gitblit v1.10.0