summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java13
1 files changed, 5 insertions, 8 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java b/pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
index 006065dd..f98276ec 100644
--- a/pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
+++ b/pki/base/common/src/com/netscape/certsrv/authentication/AuthManagerProxy.java
@@ -17,10 +17,10 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.certsrv.authentication;
+
/**
- * A class represents an authentication manager. It contains an authentication
- * manager instance and its state (enable or not).
- *
+ * 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,10 +29,9 @@ public class AuthManagerProxy {
/**
* Constructor
- *
* @param enable true if the authMgr is enabled; false otherwise
* @param mgr authentication manager instance
- */
+ */
public AuthManagerProxy(boolean enable, IAuthManager mgr) {
mEnable = enable;
mMgr = mgr;
@@ -40,8 +39,7 @@ public class AuthManagerProxy {
/**
* Returns the state of the authentication manager instance
- *
- * @return true if the state of the authentication manager instance is
+ * @return true if the state of the authentication manager instance is
* enabled; false otherwise.
*/
public boolean isEnable() {
@@ -50,7 +48,6 @@ public class AuthManagerProxy {
/**
* Returns an authentication manager instance.
- *
* @return an authentication manager instance
*/
public IAuthManager getAuthManager() {