summaryrefslogtreecommitdiffstats
path: root/base/common/src
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2016-11-29 16:10:58 +1000
committerFraser Tweedale <ftweedal@redhat.com>2016-12-12 11:49:54 +1000
commit1407b5f3af27d05970bb42ac2fefe51cb6b01abd (patch)
tree4d1e19721ba90cff060854fcbbaa40f86f9b0ad1 /base/common/src
parent6cf7cec3c559786b90dcca298a2d7c6c570eac35 (diff)
Move AuthToken key constants to IAuthToken
Part of: https://fedorahosted.org/pki/ticket/1359
Diffstat (limited to 'base/common/src')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthToken.java34
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthToken.java34
2 files changed, 34 insertions, 34 deletions
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
index 0febf8772..53959b131 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
@@ -51,40 +51,6 @@ import com.netscape.certsrv.usrgrp.Certificates;
public class AuthToken implements IAuthToken {
protected Hashtable<String, Object> mAttrs = null;
- /* Subject name of the certificate in the authenticating entry */
- public static final String TOKEN_CERT_SUBJECT = "tokenCertSubject";
-
- /* NotBefore value of the certificate in the authenticating entry */
- public static final String TOKEN_CERT_NOTBEFORE = "tokenCertNotBefore";
-
- /* NotAfter value of the certificate in the authenticating entry */
- public static final String TOKEN_CERT_NOTAFTER = "tokenCertNotAfter";
-
- /* Cert Extentions value of the certificate in the authenticating entry */
- public static final String TOKEN_CERT_EXTENSIONS = "tokenCertExts";
-
- /* Serial number of the certificate in the authenticating entry */
- public static final String TOKEN_CERT_SERIALNUM = "certSerial";
-
- /**
- * Certificate to be renewed
- */
- public static final String TOKEN_CERT = "tokenCert";
-
- /* Certificate to be revoked */
- public static final String TOKEN_CERT_TO_REVOKE = "tokenCertToRevoke";
-
- /**
- * Name of the authentication manager that created the AuthToken
- * as a string.
- */
- public static final String TOKEN_AUTHMGR_INST_NAME = "authMgrInstName";
-
- /**
- * Time of authentication as a java.util.Date
- */
- public static final String TOKEN_AUTHTIME = "authTime";
-
/**
* Constructs an instance of a authentication token.
* The token by default contains the following attributes: <br>
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
index a71432446..a3f240e9c 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
@@ -41,6 +41,40 @@ public interface IAuthToken {
public static final String UID = "uid";
public static final String GROUPS = "groups";
+ /* Subject name of the certificate in the authenticating entry */
+ public static final String TOKEN_CERT_SUBJECT = "tokenCertSubject";
+
+ /* NotBefore value of the certificate in the authenticating entry */
+ public static final String TOKEN_CERT_NOTBEFORE = "tokenCertNotBefore";
+
+ /* NotAfter value of the certificate in the authenticating entry */
+ public static final String TOKEN_CERT_NOTAFTER = "tokenCertNotAfter";
+
+ /* Cert Extentions value of the certificate in the authenticating entry */
+ public static final String TOKEN_CERT_EXTENSIONS = "tokenCertExts";
+
+ /* Serial number of the certificate in the authenticating entry */
+ public static final String TOKEN_CERT_SERIALNUM = "certSerial";
+
+ /**
+ * Certificate to be renewed
+ */
+ public static final String TOKEN_CERT = "tokenCert";
+
+ /* Certificate to be revoked */
+ public static final String TOKEN_CERT_TO_REVOKE = "tokenCertToRevoke";
+
+ /**
+ * Name of the authentication manager that created the AuthToken
+ * as a string.
+ */
+ public static final String TOKEN_AUTHMGR_INST_NAME = "authMgrInstName";
+
+ /**
+ * Time of authentication as a java.util.Date
+ */
+ public static final String TOKEN_AUTHTIME = "authTime";
+
/**
* Sets an attribute value within this AttrSet.
*