summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/authentication/IAuthManager.java
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/IAuthManager.java
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/IAuthManager.java')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/IAuthManager.java16
1 files changed, 8 insertions, 8 deletions
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();