summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/authentication
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-05 14:49:11 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-09 10:03:25 -0500
commit7c7b9d023cd466c1771068badc020dab36beb553 (patch)
tree178877eb83e25336be7577953945fbdb0b9e1a15 /base/common/src/com/netscape/certsrv/authentication
parentda1e6e2f49f66fd46c8039ff1aa4386309fba8f4 (diff)
downloadpki-7c7b9d023cd466c1771068badc020dab36beb553.tar.gz
pki-7c7b9d023cd466c1771068badc020dab36beb553.tar.xz
pki-7c7b9d023cd466c1771068badc020dab36beb553.zip
Removed whitespaces from Java code.
Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134
Diffstat (limited to 'base/common/src/com/netscape/certsrv/authentication')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthCredentials.java12
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java8
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthMgrPlugin.java12
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthResources.java4
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthToken.java18
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EAuthException.java12
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EAuthInternalError.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EAuthMgrNotFound.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EAuthMgrPluginNotFound.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EAuthUserError.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/ECompSyntaxErr.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EFormSubjectDN.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EInvalidCredentials.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/EMissingCredential.java2
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthCredentials.java6
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthManager.java16
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java30
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthToken.java42
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/ISSLClientCertProvider.java6
19 files changed, 91 insertions, 91 deletions
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthCredentials.java b/base/common/src/com/netscape/certsrv/authentication/AuthCredentials.java
index 5a0cdd3b8..ac17e2d3d 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthCredentials.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthCredentials.java
@@ -26,7 +26,7 @@ import com.netscape.certsrv.base.IArgBlock;
* Authentication Credentials as input to the authMgr. It contains all the
* information required for authentication in the authMgr.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public class AuthCredentials implements IAuthCredentials {
@@ -44,7 +44,7 @@ public class AuthCredentials implements IAuthCredentials {
/**
* Sets an authentication credential with credential name and the credential object
- *
+ *
* @param name credential name
* @param cred credential object
*/
@@ -56,7 +56,7 @@ public class AuthCredentials implements IAuthCredentials {
/**
* Returns the credential to which the specified name is mapped in this
* credential set
- *
+ *
* @param name credential name
* @return the authentication credential for the given name
*/
@@ -68,7 +68,7 @@ public class AuthCredentials implements IAuthCredentials {
* Removes the name and its corresponding credential from this
* credential set. This method does nothing if the named
* credential is not in the credential set.
- *
+ *
* @param name credential name
*/
public void delete(String name) {
@@ -79,7 +79,7 @@ public class AuthCredentials implements IAuthCredentials {
* Returns an enumeration of the credential names in this credential
* set. Use the Enumeration methods on the returned object to
* fetch the elements sequentially.
- *
+ *
* @return an enumeration of the names in this credential set
*/
public Enumeration<String> getElements() {
@@ -96,7 +96,7 @@ public class AuthCredentials implements IAuthCredentials {
/**
* Returns the argblock.
- *
+ *
* @return the argblock.
*/
public IArgBlock getArgBlock() {
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java b/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
index 76161e803..84ed047df 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
@@ -20,7 +20,7 @@ package com.netscape.certsrv.authentication;
/**
* A class represents an authentication manager. It contains an
* authentication manager instance and its state (enable or not).
- *
+ *
* @version $Revision$, $Date$
*/
public class AuthManagerProxy {
@@ -29,7 +29,7 @@ public class AuthManagerProxy {
/**
* Constructor
- *
+ *
* @param enable true if the authMgr is enabled; false otherwise
* @param mgr authentication manager instance
*/
@@ -40,7 +40,7 @@ public class AuthManagerProxy {
/**
* Returns the state of the authentication manager instance
- *
+ *
* @return true if the state of the authentication manager instance is
* enabled; false otherwise.
*/
@@ -50,7 +50,7 @@ public class AuthManagerProxy {
/**
* Returns an authentication manager instance.
- *
+ *
* @return an authentication manager instance
*/
public IAuthManager getAuthManager() {
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthMgrPlugin.java b/base/common/src/com/netscape/certsrv/authentication/AuthMgrPlugin.java
index 4226fd83c..8d06aa1e9 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthMgrPlugin.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthMgrPlugin.java
@@ -20,7 +20,7 @@ package com.netscape.certsrv.authentication;
/**
* This class represents a registered authentication manager plugin.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public class AuthMgrPlugin {
@@ -30,7 +30,7 @@ public class AuthMgrPlugin {
/**
* Constructs a AuthManager plugin.
- *
+ *
* @param id auth manager implementation name
* @param classPath class path
*/
@@ -46,7 +46,7 @@ public class AuthMgrPlugin {
/**
* Returns an auth manager implementation name
- *
+ *
* @return an auth manager implementation name
*/
public String getId() {
@@ -55,7 +55,7 @@ public class AuthMgrPlugin {
/**
* Returns a classpath of a AuthManager plugin
- *
+ *
* @return a classpath of a AuthManager plugin
*/
public String getClassPath() {
@@ -64,7 +64,7 @@ public class AuthMgrPlugin {
/**
* Returns a visibility of the plugin
- *
+ *
* @return a visibility of the plugin
*/
public boolean isVisible() {
@@ -73,7 +73,7 @@ public class AuthMgrPlugin {
/**
* Sets visibility of the plugin
- *
+ *
* @param visibility visibility of the plugin
*/
public void setVisible(boolean visibility) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthResources.java b/base/common/src/com/netscape/certsrv/authentication/AuthResources.java
index 35e810112..30a7a5d67 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthResources.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthResources.java
@@ -22,7 +22,7 @@ import java.util.ListResourceBundle;
/**
* A class represents a resource bundle for the authentication component.
* <P>
- *
+ *
* @deprecated
* @version $Revision$, $Date$
*/
@@ -30,7 +30,7 @@ public class AuthResources extends ListResourceBundle {
/**
* Returns the content of this resource.
- *
+ *
* @return the contents of this resource
*/
public Object[][] getContents() {
diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
index 0a2b1f0a2..d934f62e8 100644
--- a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java
@@ -45,7 +45,7 @@ import com.netscape.certsrv.usrgrp.Certificates;
* its own list of such information. See individual authenticaiton
* manager for more details.
* <p>
- *
+ *
* @version $Revision$, $Date$
*/
public class AuthToken implements IAuthToken {
@@ -94,13 +94,13 @@ public class AuthToken implements IAuthToken {
/**
* Constructs an instance of a authentication token.
* The token by default contains the following attributes: <br>
- *
+ *
* <pre>
* "authMgrInstName" - The authentication manager instance name.
* "authMgrImplName" - The authentication manager plugin name.
* "authTime" - The - The time of authentication.
* </pre>
- *
+ *
* @param authMgr The authentication manager that created this Token.
*/
public AuthToken(IAuthManager authMgr) {
@@ -126,7 +126,7 @@ public class AuthToken implements IAuthToken {
/**
* Removes an attribute in the AuthToken
- *
+ *
* @param attrName The name of the attribute to remove.
*/
public void delete(String attrName) {
@@ -135,7 +135,7 @@ public class AuthToken implements IAuthToken {
/**
* Enumerate all attribute names in the AuthToken.
- *
+ *
* @return Enumeration of all attribute names in this AuthToken.
*/
public Enumeration<String> getElements() {
@@ -411,7 +411,7 @@ public class AuthToken implements IAuthToken {
/**
* Enumerate all attribute values in the AuthToken.
- *
+ *
* @return Enumeration of all attribute names in this AuthToken.
*/
public Enumeration<Object> getVals() {
@@ -421,7 +421,7 @@ public class AuthToken implements IAuthToken {
/**
* Gets the name of the authentication manager instance that created
* this token.
- *
+ *
* @return The name of the authentication manager instance that created
* this token.
*/
@@ -432,7 +432,7 @@ public class AuthToken implements IAuthToken {
/**
* Gets the plugin name of the authentication manager that created this
* token.
- *
+ *
* @return The plugin name of the authentication manager that created this
* token.
*/
@@ -442,7 +442,7 @@ public class AuthToken implements IAuthToken {
/**
* Gets the time of authentication.
- *
+ *
* @return The time of authentication
*/
public Date getAuthTime() {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EAuthException.java b/base/common/src/com/netscape/certsrv/authentication/EAuthException.java
index c79c3e9a7..07a87ab96 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EAuthException.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EAuthException.java
@@ -22,7 +22,7 @@ import com.netscape.certsrv.base.EBaseException;
/**
* This class represents authentication exceptions.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public class EAuthException extends EBaseException {
@@ -39,7 +39,7 @@ public class EAuthException extends EBaseException {
/**
* Constructs an authentication exception
* <P>
- *
+ *
* @param msgFormat exception details
*/
public EAuthException(String msgFormat) {
@@ -49,7 +49,7 @@ public class EAuthException extends EBaseException {
/**
* Constructs an authentication exception with a parameter.
* <p>
- *
+ *
* @param msgFormat exception details in message string format
* @param param message string parameter
*/
@@ -60,7 +60,7 @@ public class EAuthException extends EBaseException {
/**
* Constructs a auth exception with a exception parameter.
* <P>
- *
+ *
* @param msgFormat exception details in message string format
* @param exception system exception
*/
@@ -71,7 +71,7 @@ public class EAuthException extends EBaseException {
/**
* Constructs a auth exception with a list of parameters.
* <P>
- *
+ *
* @param msgFormat the message format.
* @param params list of message format parameters
*/
@@ -81,7 +81,7 @@ public class EAuthException extends EBaseException {
/**
* Returns the resource bundle name
- *
+ *
* @return resource bundle name.
*/
protected String getBundleName() {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EAuthInternalError.java b/base/common/src/com/netscape/certsrv/authentication/EAuthInternalError.java
index 52688f922..ed76e7516 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EAuthInternalError.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EAuthInternalError.java
@@ -30,7 +30,7 @@ public class EAuthInternalError extends EAuthException {
/**
* Constructs an authentication internal error exception
* with a detailed message.
- *
+ *
* @param errorString Detailed error message.
*/
public EAuthInternalError(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EAuthMgrNotFound.java b/base/common/src/com/netscape/certsrv/authentication/EAuthMgrNotFound.java
index 925aaabf0..7a20c4beb 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EAuthMgrNotFound.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EAuthMgrNotFound.java
@@ -29,7 +29,7 @@ public class EAuthMgrNotFound extends EAuthException {
/**
* Constructs a exception for a missing authentication manager
- *
+ *
* @param errorString error string for missing authentication manager
*/
public EAuthMgrNotFound(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EAuthMgrPluginNotFound.java b/base/common/src/com/netscape/certsrv/authentication/EAuthMgrPluginNotFound.java
index 2ca90e3c8..c15bf723a 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EAuthMgrPluginNotFound.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EAuthMgrPluginNotFound.java
@@ -29,7 +29,7 @@ public class EAuthMgrPluginNotFound extends EAuthException {
/**
* Constructs a exception for a missing authentication manager plugin
- *
+ *
* @param errorString error for a missing authentication manager plugin
*/
public EAuthMgrPluginNotFound(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EAuthUserError.java b/base/common/src/com/netscape/certsrv/authentication/EAuthUserError.java
index f816c35e8..c2028aa45 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EAuthUserError.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EAuthUserError.java
@@ -29,7 +29,7 @@ public class EAuthUserError extends EAuthException {
/**
* Constructs a exception for a Invalid attribute value
- *
+ *
* @param errorString Detailed error message.
*/
public EAuthUserError(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/ECompSyntaxErr.java b/base/common/src/com/netscape/certsrv/authentication/ECompSyntaxErr.java
index 84725bb96..25844c1ff 100644
--- a/base/common/src/com/netscape/certsrv/authentication/ECompSyntaxErr.java
+++ b/base/common/src/com/netscape/certsrv/authentication/ECompSyntaxErr.java
@@ -29,7 +29,7 @@ public class ECompSyntaxErr extends EAuthException {
/**
* Constructs an component syntax error
- *
+ *
* @param errorString Detailed error message.
*/
public ECompSyntaxErr(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EFormSubjectDN.java b/base/common/src/com/netscape/certsrv/authentication/EFormSubjectDN.java
index 952824481..99f1371f9 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EFormSubjectDN.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EFormSubjectDN.java
@@ -29,7 +29,7 @@ public class EFormSubjectDN extends EAuthException {
/**
* Constructs an Error on formulating the subject dn.
- *
+ *
* @param errorString Detailed error message.
*/
public EFormSubjectDN(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EInvalidCredentials.java b/base/common/src/com/netscape/certsrv/authentication/EInvalidCredentials.java
index 3e4daaf0d..a562d69e5 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EInvalidCredentials.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EInvalidCredentials.java
@@ -29,7 +29,7 @@ public class EInvalidCredentials extends EAuthException {
/**
* Constructs an Invalid Credentials exception.
- *
+ *
* @param errorString Detailed error message.
*/
public EInvalidCredentials(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/EMissingCredential.java b/base/common/src/com/netscape/certsrv/authentication/EMissingCredential.java
index 5de73aa0d..6a2866630 100644
--- a/base/common/src/com/netscape/certsrv/authentication/EMissingCredential.java
+++ b/base/common/src/com/netscape/certsrv/authentication/EMissingCredential.java
@@ -29,7 +29,7 @@ public class EMissingCredential extends EAuthException {
/**
* Constructs a exception for a missing required authentication credential
- *
+ *
* @param errorString Detailed error message.
*/
public EMissingCredential(String errorString) {
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthCredentials.java b/base/common/src/com/netscape/certsrv/authentication/IAuthCredentials.java
index cd8434433..7a7effb4d 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthCredentials.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthCredentials.java
@@ -24,21 +24,21 @@ import com.netscape.certsrv.base.IAttrSet;
* An interface represents authentication credentials:
* e.g. uid/pwd, uid/pin, certificate, etc.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public interface IAuthCredentials extends IAttrSet {
/**
* Set argblock.
- *
+ *
* @param blk argblock
*/
public void setArgBlock(IArgBlock blk);
/**
* Returns argblock.
- *
+ *
* @return Argblock.
*/
public IArgBlock getArgBlock();
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthManager.java b/base/common/src/com/netscape/certsrv/authentication/IAuthManager.java
index 1ff46af7d..f9eddbc66 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthManager.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthManager.java
@@ -23,7 +23,7 @@ import com.netscape.certsrv.base.IConfigStore;
/**
* Authentication Manager interface.
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public interface IAuthManager {
@@ -41,7 +41,7 @@ public interface IAuthManager {
/**
* Get the name of this authentication manager instance.
* <p>
- *
+ *
* @return the name of this authentication manager.
*/
public String getName();
@@ -49,14 +49,14 @@ public interface IAuthManager {
/**
* Get name of authentication manager plugin.
* <p>
- *
+ *
* @return the name of the authentication manager plugin.
*/
public String getImplName();
/**
* Authenticate the given credentials.
- *
+ *
* @param authCred The authentication credentials
* @return authentication token
* @exception EMissingCredential If a required credential for this
@@ -69,7 +69,7 @@ public interface IAuthManager {
/**
* Initialize this authentication manager.
- *
+ *
* @param name The name of this authentication manager instance.
* @param implName The name of the authentication manager plugin.
* @param config The configuration store for this authentication manager.
@@ -86,7 +86,7 @@ public interface IAuthManager {
/**
* Gets a list of the required credentials for this authentication manager.
- *
+ *
* @return The required credential attributes.
*/
public String[] getRequiredCreds();
@@ -96,7 +96,7 @@ public interface IAuthManager {
* The configuration parameters returned is passed to the
* configuration console so configuration for instances of this
* implementation can be made through the console.
- *
+ *
* @return a list of configuration parameters.
* @exception EBaseException If an internal error occurred
*/
@@ -105,7 +105,7 @@ public interface IAuthManager {
/**
* Get the configuration store for this authentication manager.
- *
+ *
* @return The configuration store of this authentication manager.
*/
public IConfigStore getConfigStore();
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java b/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
index 329b6802e..e1ccc2d34 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
@@ -26,7 +26,7 @@ import com.netscape.certsrv.base.ISubsystem;
/**
* An interface that represents an authentication component
* <P>
- *
+ *
* @version $Revision$, $Date$
*/
public interface IAuthSubsystem extends ISubsystem {
@@ -120,7 +120,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Authenticate the given credentials using the given manager name.
- *
+ *
* @param authCred The authentication credentials
* @param authMgrName The authentication manager name
* @return a authentication token.
@@ -134,7 +134,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Gets the required credential attributes for the given authentication
* manager.
- *
+ *
* @param authMgrName The authentication manager name
* @return a Vector of required credential attribute names.
* @exception EBaseException If the required credential is missing
@@ -143,7 +143,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Adds (registers) the given authentication manager.
- *
+ *
* @param name The authentication manager name
* @param authMgr The authentication manager instance.
*/
@@ -151,14 +151,14 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Deletes (deregisters) the given authentication manager.
- *
+ *
* @param name The authentication manager name to delete.
*/
public void delete(String name);
/**
* Gets the Authentication manager instance of the specified name.
- *
+ *
* @param name The authentication manager's name.
* @exception EBaseException when internal error occurs.
*/
@@ -167,21 +167,21 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Gets an enumeration of authentication managers registered to the
* authentication subsystem.
- *
+ *
* @return a list of authentication managers
*/
public Enumeration<IAuthManager> getAuthManagers();
/**
* Gets an enumeration of authentication manager plugins.
- *
+ *
* @return a list of authentication plugins
*/
public Enumeration<AuthMgrPlugin> getAuthManagerPlugins();
/**
* Gets a single authentication manager plugin implementation
- *
+ *
* @param name given authentication plugin name
* @return the given authentication plugin
*/
@@ -189,7 +189,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Get configuration parameters for a authentication mgr plugin.
- *
+ *
* @param implName The plugin name.
* @return configuration parameters for the given authentication manager plugin
* @exception EAuthMgrPluginNotFound If the authentication manager
@@ -201,7 +201,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Log error message.
- *
+ *
* @param level log level
* @param msg error message
*/
@@ -209,21 +209,21 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Get a hashtable containing all authentication plugins.
- *
+ *
* @return all authentication plugins.
*/
public Hashtable<String, AuthMgrPlugin> getPlugins();
/**
* Get a hashtable containing all authentication instances.
- *
+ *
* @return all authentication instances.
*/
public Hashtable<?, ?> getInstances();
/**
* Get an authentication manager interface for the given name.
- *
+ *
* @param name given authentication manager name.
* @return an authentication manager for the given manager name.
*/
@@ -231,7 +231,7 @@ public interface IAuthSubsystem extends ISubsystem {
/**
* Get an authentication manager plugin impl for the given name.
- *
+ *
* @param name given authentication manager name.
* @return an authentication manager plugin
*/
diff --git a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
index f46ee3ca1..25a73b8f1 100644
--- a/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
+++ b/base/common/src/com/netscape/certsrv/authentication/IAuthToken.java
@@ -39,7 +39,7 @@ public interface IAuthToken {
/**
* Sets an attribute value within this AttrSet.
- *
+ *
* @param name the name of the attribute
* @param value the attribute object.
* @return false on an error
@@ -48,7 +48,7 @@ public interface IAuthToken {
/**
* Gets an attribute value.
- *
+ *
* @param name the name of the attribute to return.
* @exception EBaseException on attribute handling errors.
* @return the attribute value
@@ -58,7 +58,7 @@ public interface IAuthToken {
/**
* Returns an enumeration of the names of the attributes existing within
* this AttrSet.
- *
+ *
* @return an enumeration of the attribute names.
*/
public Enumeration<String> getElements();
@@ -72,7 +72,7 @@ public interface IAuthToken {
/**
* Retrieves the byte array value for name. The value should have been
* previously stored as a byte array (it will be CMS.AtoB decoded).
- *
+ *
* @param name The attribute name.
* @return The byte array or null on error.
*/
@@ -80,7 +80,7 @@ public interface IAuthToken {
/**
* Stores the byte array with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on an error
@@ -89,7 +89,7 @@ public interface IAuthToken {
/**
* Retrieves the Integer value for name.
- *
+ *
* @param name The attribute name.
* @return The Integer or null on error.
*/
@@ -97,7 +97,7 @@ public interface IAuthToken {
/**
* Stores the Integer with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on an error
@@ -106,7 +106,7 @@ public interface IAuthToken {
/**
* Retrieves the BigInteger array value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -114,7 +114,7 @@ public interface IAuthToken {
/**
* Stores the BigInteger array with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on an error
@@ -123,7 +123,7 @@ public interface IAuthToken {
/**
* Retrieves the Date value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -131,7 +131,7 @@ public interface IAuthToken {
/**
* Stores the Date with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on an error
@@ -140,7 +140,7 @@ public interface IAuthToken {
/**
* Retrieves the String array value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -148,7 +148,7 @@ public interface IAuthToken {
/**
* Stores the String array with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return False on error.
@@ -157,7 +157,7 @@ public interface IAuthToken {
/**
* Retrieves the X509CertImpl value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -165,7 +165,7 @@ public interface IAuthToken {
/**
* Stores the X509CertImpl with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on error
@@ -174,7 +174,7 @@ public interface IAuthToken {
/**
* Retrieves the CertificateExtensions value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -182,7 +182,7 @@ public interface IAuthToken {
/**
* Stores the CertificateExtensions with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on error
@@ -191,7 +191,7 @@ public interface IAuthToken {
/**
* Retrieves the Certificates value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -199,7 +199,7 @@ public interface IAuthToken {
/**
* Stores the Certificates with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on error
@@ -208,7 +208,7 @@ public interface IAuthToken {
/**
* Retrieves the byte[][] value for name.
- *
+ *
* @param name The attribute name.
* @return The value or null on error.
*/
@@ -216,7 +216,7 @@ public interface IAuthToken {
/**
* Stores the byte[][] with the associated key.
- *
+ *
* @param name The attribute name.
* @param value The value to store
* @return false on error
diff --git a/base/common/src/com/netscape/certsrv/authentication/ISSLClientCertProvider.java b/base/common/src/com/netscape/certsrv/authentication/ISSLClientCertProvider.java
index 6932decc0..ce8f40bd0 100644
--- a/base/common/src/com/netscape/certsrv/authentication/ISSLClientCertProvider.java
+++ b/base/common/src/com/netscape/certsrv/authentication/ISSLClientCertProvider.java
@@ -24,17 +24,17 @@ import java.security.cert.X509Certificate;
* SSL client certificate in a SSL session. Normally, this
* object is a servlet.
* <p>
- *
+ *
* This interface is used to avoid the internal imeplemtnation to have servlet (protocol handler) dependency.
* <p>
- *
+ *
* @version $Revision$, $Date$
*/
public interface ISSLClientCertProvider {
/**
* Retrieves the SSL client certificate chain.
- *
+ *
* @return certificate chain
*/
public X509Certificate[] getClientCertificateChain();