summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2011-12-08 21:15:59 -0500
committerAde Lee <alee@redhat.com>2011-12-08 21:15:59 -0500
commit171aaece4f23709d33d180cf36eb3af5e454b0c9 (patch)
tree1485f9f0a7bd10de4ff25030db575dbb8dafae74 /pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
parentadad2fcee8a29fdb82376fbce07dedb11fccc182 (diff)
downloadpki-171aaece4f23709d33d180cf36eb3af5e454b0c9.tar.gz
pki-171aaece4f23709d33d180cf36eb3af5e454b0c9.tar.xz
pki-171aaece4f23709d33d180cf36eb3af5e454b0c9.zip
Revert "Formatting"
This reverts commit 32150d3ee32f8ac27118af7c792794b538c78a2f.
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/jobs/AJobBase.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/jobs/AJobBase.java96
1 files changed, 43 insertions, 53 deletions
diff --git a/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java b/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
index ecf827e44..8488ec2d0 100644
--- a/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
+++ b/pki/base/common/src/com/netscape/cms/jobs/AJobBase.java
@@ -17,6 +17,7 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.jobs;
+
import java.io.IOException;
import java.util.Hashtable;
@@ -35,10 +36,11 @@ import com.netscape.certsrv.notification.IEmailTemplate;
import com.netscape.certsrv.notification.IMailNotification;
import com.netscape.certsrv.request.IRequest;
+
/**
- * This abstract class is a base job for real job extentions for the Jobs
- * Scheduler.
- *
+ * This abstract class is a base job for real job extentions for the
+ * Jobs Scheduler.
+ *
* @version $Revision$, $Date$
* @see com.netscape.certsrv.jobs.IJob
*/
@@ -55,7 +57,7 @@ public abstract class AJobBase implements IJob, Runnable {
protected static final String STATUS_FAILURE = "failed";
protected static final String STATUS_SUCCESS = "succeeded";
- // variables used by the Job Scheduler Daemon
+ // variables used by the Job Scheduler Daemon
protected String mImplName = null;
protected IConfigStore mConfig;
protected String mId = null;
@@ -79,8 +81,8 @@ public abstract class AJobBase implements IJob, Runnable {
/**
* tells if the job is enabled
- *
- * @return a boolean value indicating whether the job is enabled or not
+ * @return a boolean value indicating whether the job is enabled
+ * or not
*/
public boolean isEnabled() {
boolean enabled = false;
@@ -95,18 +97,17 @@ public abstract class AJobBase implements IJob, Runnable {
/***********************
* abstract methods
***********************/
- public abstract void init(ISubsystem owner, String id, String implName,
- IConfigStore config) throws EBaseException;
+ public abstract void init(ISubsystem owner, String id, String implName, IConfigStore
+ config) throws EBaseException;
public abstract void run();
/***********************
* public methods
***********************/
-
+
/**
* get instance id.
- *
* @return a String identifier
*/
public String getId() {
@@ -115,7 +116,6 @@ public abstract class AJobBase implements IJob, Runnable {
/**
* set instance id.
- *
* @param id String id of the instance
*/
public void setId(String id) {
@@ -124,7 +124,6 @@ public abstract class AJobBase implements IJob, Runnable {
/**
* get cron string associated with this job
- *
* @return a JobCron object that represents the schedule of this job
*/
public IJobCron getJobCron() {
@@ -133,7 +132,6 @@ public abstract class AJobBase implements IJob, Runnable {
/**
* gets the plugin name of this job.
- *
* @return a String that is the name of this implementation
*/
public String getImplName() {
@@ -142,7 +140,6 @@ public abstract class AJobBase implements IJob, Runnable {
/**
* Gets the configuration substore used by this job
- *
* @return configuration store
*/
public IConfigStore getConfigStore() {
@@ -162,8 +159,7 @@ public abstract class AJobBase implements IJob, Runnable {
if (template != null) {
if (!template.init()) {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("JOBS_TEMPLATE_INIT_ERROR"));
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("JOBS_TEMPLATE_INIT_ERROR"));
return null;
}
@@ -174,8 +170,7 @@ public abstract class AJobBase implements IJob, Runnable {
}
templateString = template.toString();
} else {
- log(ILogger.LL_FAILURE,
- CMS.getLogMessage("JOBS_TEMPLATE_INIT_ERROR"));
+ log(ILogger.LL_FAILURE, CMS.getLogMessage("JOBS_TEMPLATE_INIT_ERROR"));
}
return templateString;
@@ -197,43 +192,41 @@ public abstract class AJobBase implements IJob, Runnable {
mn.sendNotification();
} catch (ENotificationException e) {
// already logged, lets audit
- mLogger.log(ILogger.EV_AUDIT, null, ILogger.S_OTHER,
- ILogger.LL_FAILURE,
- CMS.getLogMessage("JOBS_SEND_NOTIFICATION", e.toString()));
+ mLogger.log(ILogger.EV_AUDIT, null,
+ ILogger.S_OTHER,
+ ILogger.LL_FAILURE, CMS.getLogMessage("JOBS_SEND_NOTIFICATION", e.toString()));
} catch (IOException e) {
// already logged, lets audit
- mLogger.log(ILogger.EV_AUDIT, null, ILogger.S_OTHER,
- ILogger.LL_FAILURE,
- CMS.getLogMessage("JOBS_SEND_NOTIFICATION", e.toString()));
+ mLogger.log(ILogger.EV_AUDIT, null,
+ ILogger.S_OTHER,
+ ILogger.LL_FAILURE, CMS.getLogMessage("JOBS_SEND_NOTIFICATION", e.toString()));
}
}
protected void buildItemParams(X509CertImpl cert) {
- mItemParams.put(IEmailFormProcessor.TOKEN_SERIAL_NUM, (Object) cert
- .getSerialNumber().toString());
- mItemParams.put(IEmailFormProcessor.TOKEN_HEX_SERIAL_NUM, (Object) cert
- .getSerialNumber().toString(16));
- mItemParams.put(IEmailFormProcessor.TOKEN_ISSUER_DN, (Object) cert
- .getIssuerDN().toString());
- mItemParams.put(IEmailFormProcessor.TOKEN_SUBJECT_DN, (Object) cert
- .getSubjectDN().toString());
- mItemParams.put(IEmailFormProcessor.TOKEN_NOT_AFTER, (Object) cert
- .getNotAfter().toString());
- mItemParams.put(IEmailFormProcessor.TOKEN_NOT_BEFORE, (Object) cert
- .getNotBefore().toString());
+ mItemParams.put(IEmailFormProcessor.TOKEN_SERIAL_NUM,
+ (Object) cert.getSerialNumber().toString());
+ mItemParams.put(IEmailFormProcessor.TOKEN_HEX_SERIAL_NUM,
+ (Object) cert.getSerialNumber().toString(16));
+ mItemParams.put(IEmailFormProcessor.TOKEN_ISSUER_DN,
+ (Object) cert.getIssuerDN().toString());
+ mItemParams.put(IEmailFormProcessor.TOKEN_SUBJECT_DN,
+ (Object) cert.getSubjectDN().toString());
+ mItemParams.put(IEmailFormProcessor.TOKEN_NOT_AFTER,
+ (Object) cert.getNotAfter().toString());
+ mItemParams.put(IEmailFormProcessor.TOKEN_NOT_BEFORE,
+ (Object) cert.getNotBefore().toString());
// ... and more
}
protected void buildItemParams(IRequest r) {
- String re = r.getExtDataInString(IRequest.HTTP_PARAMS,
- "csrRequestorEmail");
+ String re = r.getExtDataInString(IRequest.HTTP_PARAMS, "csrRequestorEmail");
if (re != null) {
mItemParams.put(IEmailFormProcessor.TOKEN_REQUESTOR_EMAIL, re);
}
- String ct = r.getExtDataInString(IRequest.HTTP_PARAMS,
- IRequest.CERT_TYPE);
+ String ct = r.getExtDataInString(IRequest.HTTP_PARAMS, IRequest.CERT_TYPE);
if (ct != null) {
mItemParams.put(IEmailFormProcessor.TOKEN_CERT_TYPE, ct);
@@ -259,38 +252,35 @@ public abstract class AJobBase implements IJob, Runnable {
if (val != null)
mContentParams.put(name, val);
else {
- CMS.debug("AJobBase: buildContentParams: null value for name= "
- + name);
+ CMS.debug("AJobBase: buildContentParams: null value for name= " + name);
mContentParams.put(name, "");
}
}
/**
- * logs an entry in the log file. Used by classes extending this class.
- *
+ * logs an entry in the log file. Used by classes extending this class.
* @param level log level
* @param msg log message in String
*/
public void log(int level, String msg) {
if (mLogger == null)
return;
- mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_OTHER, level, mId + ": "
- + msg);
+ mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_OTHER,
+ level, mId + ": " + msg);
}
/**
- * capable of logging multiline entry in the log file. Used by classes
- * extending this class.
- *
+ * capable of logging multiline entry in the log file. Used by classes extending this class.
* @param level log level
* @param msg log message in String
- * @param multiline boolean indicating whether the message is a multi-lined
- * message.
+ * @param multiline boolean indicating whether the message is a
+ * multi-lined message.
*/
public void log(int level, String msg, boolean multiline) {
if (mLogger == null)
return;
- mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_OTHER, level, mId + ": "
- + msg, multiline);
+ mLogger.log(ILogger.EV_SYSTEM, null, ILogger.S_OTHER,
+ level, mId + ": " + msg, multiline);
}
}
+