summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/cmscore/jobs')
-rw-r--r--base/common/src/com/netscape/cmscore/jobs/CronItem.java6
-rw-r--r--base/common/src/com/netscape/cmscore/jobs/CronRange.java4
-rw-r--r--base/common/src/com/netscape/cmscore/jobs/JobCron.java10
-rw-r--r--base/common/src/com/netscape/cmscore/jobs/JobsScheduler.java14
4 files changed, 17 insertions, 17 deletions
diff --git a/base/common/src/com/netscape/cmscore/jobs/CronItem.java b/base/common/src/com/netscape/cmscore/jobs/CronItem.java
index 91574c6cc..f15e0402a 100644
--- a/base/common/src/com/netscape/cmscore/jobs/CronItem.java
+++ b/base/common/src/com/netscape/cmscore/jobs/CronItem.java
@@ -31,7 +31,7 @@ import com.netscape.certsrv.logging.ILogger;
* an "item"...which includes both numbers and '-' separated ranges.
* <p>
* for each of the 5 cron fields, it's represented as a CronItem
- *
+ *
* @author cfu
* @version $Revision$, $Date$
*/
@@ -55,7 +55,7 @@ public class CronItem {
/**
* parses and sets a string cron item
- *
+ *
* @param sItem the string representing an item of a cron string.
* item can be potentially comma separated with ranges specified
* with '-'s
@@ -149,7 +149,7 @@ public class CronItem {
/**
* get the vector stuffed with elements where each element is
* represented as CronRange
- *
+ *
* @return a vector of CronRanges
*/
public Vector<CronRange> getElements() {
diff --git a/base/common/src/com/netscape/cmscore/jobs/CronRange.java b/base/common/src/com/netscape/cmscore/jobs/CronRange.java
index af5ae2a51..c49a5b1b4 100644
--- a/base/common/src/com/netscape/cmscore/jobs/CronRange.java
+++ b/base/common/src/com/netscape/cmscore/jobs/CronRange.java
@@ -25,7 +25,7 @@ package com.netscape.cmscore.jobs;
* <p>
* an Element can contain either an integer number or a range specified as CronRange. In case of integer numbers, begin
* and end are of the same value
- *
+ *
* @author cfu
* @version $Revision$, $Date$
*/
@@ -67,7 +67,7 @@ public class CronRange {
/**
* checks to see if the lower and higher boundary values are
* within the min/max.
- *
+ *
* @param min the minimum value one can specify in this field
* @param max the maximum value one can specify in this field
* @return a boolean (true/false) on whether the begin/end values
diff --git a/base/common/src/com/netscape/cmscore/jobs/JobCron.java b/base/common/src/com/netscape/cmscore/jobs/JobCron.java
index 164c1250e..7befa611c 100644
--- a/base/common/src/com/netscape/cmscore/jobs/JobCron.java
+++ b/base/common/src/com/netscape/cmscore/jobs/JobCron.java
@@ -38,7 +38,7 @@ import com.netscape.certsrv.logging.ILogger;
* e.g. jobsScheduler.job.rnJob1.cron=30 11,23 * * 1-5 In this example, the job "rnJob1" will be executed from Monday
* through Friday, at 11:30am and 11:30pm.
* <p>
- *
+ *
* @author cfu
* @version $Revision$, $Date$
*/
@@ -173,7 +173,7 @@ public class JobCron implements IJobCron {
/**
* retrieves the cron item
- *
+ *
* @param item name of the item. must be one of the <b>CRON_*</b>
* strings defined in this class
* @return an instance of the CronItem class which represents the
@@ -199,7 +199,7 @@ public class JobCron implements IJobCron {
/**
* Does the element fit any element in the item
- *
+ *
* @param element the element of "now" in cron format
* @param item the item consists of a vector of elements
* @return boolean (true/false) on whether the element is one of
@@ -229,7 +229,7 @@ public class JobCron implements IJobCron {
/**
* convert the day of the week representation from Calendar to
* cron
- *
+ *
* @param time the Calendar value represents a moment of time
* @return an integer value that represents a cron Day-Of-Week
* element
@@ -277,7 +277,7 @@ public class JobCron implements IJobCron {
/**
* convert the month of year representation from Calendar to cron
- *
+ *
* @param time the Calendar value represents a moment of time
* @return an integer value that represents a cron Month-Of-Year
* element
diff --git a/base/common/src/com/netscape/cmscore/jobs/JobsScheduler.java b/base/common/src/com/netscape/cmscore/jobs/JobsScheduler.java
index b35f8c340..feabb1f46 100644
--- a/base/common/src/com/netscape/cmscore/jobs/JobsScheduler.java
+++ b/base/common/src/com/netscape/cmscore/jobs/JobsScheduler.java
@@ -47,7 +47,7 @@ import com.netscape.cmscore.util.Debug;
* on each Tuesday (e.g. * 7 * * 2) will result in the execution of the job thread only once every 5 minutes during that
* hour. <b>The inteval value is recommended at 1 minute, setting it otherwise has the potential of forever missing the
* beat</b>. Use with caution.
- *
+ *
* @author cfu
* @see JobCron
* @version $Revision$, $Date$
@@ -93,7 +93,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
* the config params have the following formats: jobScheduler.impl.[implementation name].class=[package name]
* jobScheduler.job.[job name].pluginName=[implementation name] jobScheduler.job.[job name].cron=[crontab format]
* jobScheduler.job.[job name].[any job specific params]=[values]
- *
+ *
* @param config jobsScheduler configStore
*/
public void init(ISubsystem owner, IConfigStore config)
@@ -373,7 +373,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
/**
* Retrieves id (name) of this subsystem.
- *
+ *
* @return name of the Jobs Scheduler subsystem
*/
public String getId() {
@@ -384,7 +384,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
* Sets id string to this subsystem.
* <p>
* Use with caution. Should not do it when sharing with others
- *
+ *
* @param id name to be applied to an Jobs Scheduler subsystem
*/
public void setId(String id) throws EBaseException {
@@ -423,7 +423,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
/**
* Returns the root configuration storage of this system.
* <P>
- *
+ *
* @return configuration store of this subsystem
*/
public IConfigStore getConfigStore() {
@@ -433,7 +433,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
/**
* Gets configuration parameters for the given
* job plugin.
- *
+ *
* @param implName Name of the job plugin.
* @return Hashtable of required parameters.
*/
@@ -454,7 +454,7 @@ public class JobsScheduler implements Runnable, IJobsScheduler {
implName));
}
- // XXX can find an instance of this plugin in existing
+ // XXX can find an instance of this plugin in existing
// auth manager instantces to avoid instantiation just for this.
// a temporary instance