summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java17
1 files changed, 10 insertions, 7 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java b/pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java
index 1a575fb9c..c884ebbf0 100644
--- a/pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java
+++ b/pki/base/common/src/com/netscape/certsrv/request/AgentApproval.java
@@ -17,24 +17,27 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.certsrv.request;
+
import java.io.Serializable;
import java.util.Date;
+
/**
- * The AgentApproval class contains the record of a single agent approval.
- *
+ * The AgentApproval class contains the record of a
+ * single agent approval.
+ *
* @version $Revision$, $Date$
*/
-public class AgentApproval implements Serializable {
+public class AgentApproval
+ implements Serializable {
/**
*
*/
private static final long serialVersionUID = -3444654917454805225L;
-
/**
* Returns the approving agent's user name.
- *
+ *
* @return an identifier for the agent
*/
public String getUserName() {
@@ -43,7 +46,7 @@ public class AgentApproval implements Serializable {
/**
* Returns the date of the approval
- *
+ *
* @return date and time of the approval
*/
public Date getDate() {
@@ -52,7 +55,7 @@ public class AgentApproval implements Serializable {
/**
* AgentApproval class constructor
- *
+ *
* @param userName user name of the approving agent
*/
AgentApproval(String userName) {