summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/request
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2012-01-11 13:01:06 -0500
committerAde Lee <alee@redhat.com>2012-01-11 13:49:51 -0500
commitf31ce3a1378071cc413bb01a65ae6e206f0ce4ff (patch)
treef327e4e0eb989037aba599f07a70905a84485963 /pki/base/common/src/com/netscape/cmscore/request
parent357d48b4f9897d09244f655d9b1836711947cc32 (diff)
downloadpki-f31ce3a1378071cc413bb01a65ae6e206f0ce4ff.tar.gz
pki-f31ce3a1378071cc413bb01a65ae6e206f0ce4ff.tar.xz
pki-f31ce3a1378071cc413bb01a65ae6e206f0ce4ff.zip
Formatting (line wrap > 120 in comments
Diffstat (limited to 'pki/base/common/src/com/netscape/cmscore/request')
-rw-r--r--pki/base/common/src/com/netscape/cmscore/request/ARequestQueue.java22
-rw-r--r--pki/base/common/src/com/netscape/cmscore/request/RequestSubsystem.java3
2 files changed, 17 insertions, 8 deletions
diff --git a/pki/base/common/src/com/netscape/cmscore/request/ARequestQueue.java b/pki/base/common/src/com/netscape/cmscore/request/ARequestQueue.java
index 016e368c6..bd47f3ce6 100644
--- a/pki/base/common/src/com/netscape/cmscore/request/ARequestQueue.java
+++ b/pki/base/common/src/com/netscape/cmscore/request/ARequestQueue.java
@@ -68,9 +68,11 @@ import com.netscape.certsrv.request.RequestStatus;
* <p>
* !Put state machine description here!
* <p>
- * This class defines several abstract protected functions that need to be defined by the concrete implementation. In particular, this class does not implement the operations for storing requests persistantly.
+ * This class defines several abstract protected functions that need to be defined by the concrete implementation. In
+ * particular, this class does not implement the operations for storing requests persistantly.
* <p>
- * This class also provides several accessor functions for setting fields in the IRequest object. These functions are provided as an aid to saving and restoring the state in the database.
+ * This class also provides several accessor functions for setting fields in the IRequest object. These functions are
+ * provided as an aid to saving and restoring the state in the database.
* <p>
* This class also implements the locking operations specified by the IRequestQueue interface.
* <p>
@@ -89,7 +91,8 @@ public abstract class ARequestQueue
/**
* Create a new (unique) RequestId. (abstract)
* <p>
- * This method must be implemented by the specialized class to generate a new id from data in the persistant store. This id is used to create a new request object.
+ * This method must be implemented by the specialized class to generate a new id from data in the persistant store.
+ * This id is used to create a new request object.
* <p>
*
* @return
@@ -106,7 +109,8 @@ public abstract class ARequestQueue
* <p>
* This function is called to create the in-memory version of a request object.
* <p>
- * The implementation of this object can use the createRequest member function to create a new instance of an IRequest, and use the setRequestStatus, setCreationTime and setModificationTime functions to set those values.
+ * The implementation of this object can use the createRequest member function to create a new instance of an
+ * IRequest, and use the setRequestStatus, setCreationTime and setModificationTime functions to set those values.
* <p>
*
* @param id
@@ -154,7 +158,9 @@ public abstract class ARequestQueue
* Get complete list of RequestId values found i this
* queue.
* <p>
- * This method can form the basis for creating other types of search/list operations (although there are probably more efficient ways of doing this. ARequestQueue implements default versions of some of the searching by using this method as a basis.
+ * This method can form the basis for creating other types of search/list operations (although there are probably
+ * more efficient ways of doing this. ARequestQueue implements default versions of some of the searching by using
+ * this method as a basis.
* <p>
* TODO: return IRequestList -or- just use listRequests as the basic engine.
* <p>
@@ -500,7 +506,8 @@ public abstract class ARequestQueue
/**
* Implements IRequestQueue.listRequests
* <p>
- * Should be overridden by the specialized class if a more efficient method is available for implementing this operation.
+ * Should be overridden by the specialized class if a more efficient method is available for implementing this
+ * operation.
* <P>
*
* @see IRequestQueue#listRequests
@@ -512,7 +519,8 @@ public abstract class ARequestQueue
/**
* Implements IRequestQueue.listRequestsByStatus
* <p>
- * Should be overridden by the specialized class if a more efficient method is available for implementing this operation.
+ * Should be overridden by the specialized class if a more efficient method is available for implementing this
+ * operation.
* <P>
*
* @see IRequestQueue#listRequestsByStatus
diff --git a/pki/base/common/src/com/netscape/cmscore/request/RequestSubsystem.java b/pki/base/common/src/com/netscape/cmscore/request/RequestSubsystem.java
index ee625594f..862ddaa68 100644
--- a/pki/base/common/src/com/netscape/cmscore/request/RequestSubsystem.java
+++ b/pki/base/common/src/com/netscape/cmscore/request/RequestSubsystem.java
@@ -36,7 +36,8 @@ import com.netscape.cmscore.dbs.DBSubsystem;
* <p>
* This class is reponsible for managing storage of request objects in the local database.
* <p>
- * TODO: review this It provides: + registration of LDAP/JAVA mapping classes with the DBSubsystem + creation of RequestQueue storage in the database + retrieval of existing RequestQueue objects from the database
+ * TODO: review this It provides: + registration of LDAP/JAVA mapping classes with the DBSubsystem + creation of
+ * RequestQueue storage in the database + retrieval of existing RequestQueue objects from the database
* <p>
*
* @author thayes