From 8d21db36015f8560d9cd2bcee9817f2c0a07a386 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 24 Mar 2015 14:11:47 +0000
Subject: [PATCH] Autorefactored javadocs
---
opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskTool.java | 37 ++++++++++++++-----------------------
1 files changed, 14 insertions(+), 23 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskTool.java b/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskTool.java
index 1faa763..998b805 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskTool.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/tools/tasks/TaskTool.java
@@ -86,19 +86,22 @@
*/
private static final int RUN_ONLINE = 52;
- // Number of milliseconds this utility will wait before reloading
- // this task's entry in the directory while it is polling for status
+ /**
+ * Number of milliseconds this utility will wait before reloading
+ * this task's entry in the directory while it is polling for status.
+ */
private static final int SYNCHRONOUS_TASK_POLL_INTERVAL = 1000;
private LDAPConnectionArgumentParser argParser;
private TaskScheduleArgs taskScheduleArgs;
- // Argument used to know whether we must test if we must run in off-line
- // mode.
+ /**
+ * Argument used to know whether we must test if we must run in off-line mode.
+ */
private BooleanArgument testIfOfflineArg;
- // This CLI is always using the administration connector with SSL
+ /** This CLI is always using the administration connector with SSL. */
private static final boolean alwaysSSL = true;
/**
@@ -187,49 +190,37 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public Date getStartDateTime() {
return taskScheduleArgs.getStartDateTime();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public String getRecurringDateTime() {
return taskScheduleArgs.getRecurringDateTime();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public List<String> getDependencyIds() {
return taskScheduleArgs.getDependencyIds();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public FailedDependencyAction getFailedDependencyAction() {
return taskScheduleArgs.getFailedDependencyAction();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public List<String> getNotifyUponCompletionEmailAddresses() {
return taskScheduleArgs.getNotifyUponCompletionEmailAddresses();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public List<String> getNotifyUponErrorEmailAddresses() {
return taskScheduleArgs.getNotifyUponErrorEmailAddresses();
--
Gitblit v1.10.0