mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
31.41.2010 945baa37e165552383349e046d4f4e4b016058ec
Fix help messages and Java doc
3 files modified
10 ■■■■ changed files
opends/src/messages/messages/admin_tool.properties 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/tools/InstallDSArgumentParser.java 4 ●●●● patch | view | raw | blame | history
opends/src/messages/messages/admin_tool.properties
@@ -520,7 +520,7 @@
INFO_DESCRIPTION_SUBCMD_INITIALIZE_ALL_REPLICATION=Initialize the contents of \
 the data under the specified Base DN on all the servers whose contents are \
 being replicated with the contents on the specified server.  This operation \
 is required after enabling replication in order replication to work ('%s' \
 is required after enabling replication for replication to work ('%s' \
 applied to each server can also be used for this purpose)
INFO_DESCRIPTION_SUBCMD_PRE_EXTERNAL_INITIALIZATION=This subcommand must be \
 called before initializing the contents of all the replicated servers using \
opends/src/server/org/opends/server/admin/client/cli/SecureConnectionCliParser.java
@@ -474,10 +474,10 @@
   * must be called after parsing the arguments.
   * @return the timeout to be used to connect in milliseconds.  Returns
   * {@code 0} if there is no timeout.
   * @throw {@code IllegalStateException} if the method is called before
   * @throws IllegalStateException if the method is called before
   * parsing the arguments.
   */
  public int getConnectTimeout()
  public int getConnectTimeout()throws IllegalStateException
  {
    try
    {
opends/src/server/org/opends/server/tools/InstallDSArgumentParser.java
@@ -803,10 +803,10 @@
   * must be called after parsing the arguments.
   * @return the timeout to be used to connect in milliseconds.  Returns
   * {@code 0} if there is no timeout.
   * @throw {@code IllegalStateException} if the method is called before
   * @throws IllegalStateException if the method is called before
   * parsing the arguments.
   */
  public int getConnectTimeout()
  public int getConnectTimeout() throws IllegalStateException
  {
    try
    {