summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-11-17 11:38:48 -0500
committerAdam Young <ayoung@redhat.com>2011-12-22 16:39:30 -0500
commitee93fc8f86eb62d52811ce2458e8ccd12bc1cd20 (patch)
tree172f48318589014614a9a5c1f03fd76485a42b2e /pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
parent90c761917754c18c18e9df643e8dd60368a3510f (diff)
downloadpki-ee93fc8f86eb62d52811ce2458e8ccd12bc1cd20.tar.gz
pki-ee93fc8f86eb62d52811ce2458e8ccd12bc1cd20.tar.xz
pki-ee93fc8f86eb62d52811ce2458e8ccd12bc1cd20.zip
type safety for certserv.authenticator
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java b/pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
index 29657e7a4..2de8ed266 100644
--- a/pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
+++ b/pki/base/common/src/com/netscape/certsrv/authentication/IAuthSubsystem.java
@@ -164,13 +164,13 @@ public interface IAuthSubsystem extends ISubsystem {
* authentication subsystem.
* @return a list of authentication managers
*/
- public Enumeration getAuthManagers();
+ public Enumeration<IAuthManager> getAuthManagers();
/**
* Gets an enumeration of authentication manager plugins.
* @return a list of authentication plugins
*/
- public Enumeration getAuthManagerPlugins();
+ public Enumeration<AuthMgrPlugin> getAuthManagerPlugins();
/**
* Gets a single authentication manager plugin implementation
@@ -201,13 +201,13 @@ public interface IAuthSubsystem extends ISubsystem {
* Get a hashtable containing all authentication plugins.
* @return all authentication plugins.
*/
- public Hashtable getPlugins();
+ public Hashtable<String, AuthMgrPlugin> getPlugins();
/**
* Get a hashtable containing all authentication instances.
* @return all authentication instances.
*/
- public Hashtable getInstances();
+ public Hashtable<?, ?> getInstances();
/**
* Get an authentication manager interface for the given name.