summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-11-18 14:53:08 -0500
committerAdam Young <ayoung@redhat.com>2012-01-04 11:24:45 -0500
commit5155a9dc8d5b461123a13079252fc5d3fab8f908 (patch)
treed618d8679902474feca63e1b39e6250826b92461 /pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java
parent9c3c8ee12bfc4b0bd3a6a57382f90d7c0ff8abbb (diff)
downloadpki-5155a9dc8d5b461123a13079252fc5d3fab8f908.tar.gz
pki-5155a9dc8d5b461123a13079252fc5d3fab8f908.tar.xz
pki-5155a9dc8d5b461123a13079252fc5d3fab8f908.zip
Typesafety for certsrv.kra
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java b/pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java
index b268073e..7be3f165 100644
--- a/pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java
+++ b/pki/base/common/src/com/netscape/certsrv/kra/IKeyRecoveryAuthority.java
@@ -164,7 +164,7 @@ public interface IKeyRecoveryAuthority extends ISubsystem {
*
* @return list of auto recovery identifiers
*/
- public Enumeration getAutoRecoveryIDs();
+ public Enumeration<String> getAutoRecoveryIDs();
/**
* Returns the storage key unit that manages the
@@ -259,7 +259,7 @@ public interface IKeyRecoveryAuthority extends ISubsystem {
* @param id request id
* @return volatile requests
*/
- public Hashtable createVolatileRequest(RequestId id);
+ public Hashtable<String, Object> createVolatileRequest(RequestId id);
/**
* Retrieves the request object.
@@ -267,7 +267,7 @@ public interface IKeyRecoveryAuthority extends ISubsystem {
* @param id request id
* @return volatile requests
*/
- public Hashtable getVolatileRequest(RequestId id);
+ public Hashtable<String, Object> getVolatileRequest(RequestId id);
/**
* Destroys the request object.
@@ -276,7 +276,7 @@ public interface IKeyRecoveryAuthority extends ISubsystem {
*/
public void destroyVolatileRequest(RequestId id);
- public Vector getAppAgents(
+ public Vector<Credential> getAppAgents(
String recoveryID) throws EBaseException;
/**