summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java28
-rw-r--r--base/server/cmscore/src/com/netscape/cmscore/request/RequestSubsystem.java6
2 files changed, 0 insertions, 34 deletions
diff --git a/base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java b/base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java
index 969be8713..505b41e1e 100644
--- a/base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java
+++ b/base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java
@@ -64,34 +64,6 @@ public interface IRequestSubsystem {
* A notifier object (optional). The notify() method of this object
* is invoked when the request is completed (COMPLETE, REJECTED or
* CANCELED states).
- * @exception EBaseException failed to retrieve request queue
- */
- public IRequestQueue
- getRequestQueue(String name, int increment, IPolicy p, IService s, INotify n)
- throws EBaseException;
-
- /**
- * Retrieves a request queue. This operation should only be done
- * once on each queue. For example, the RA subsystem should retrieve
- * its queue, and store it somewhere for use by related services, and
- * servlets.
- * <p>
- * WARNING: retrieving the same queue twice with result in multi-thread race conditions.
- * <p>
- *
- * @param name
- * the name of the request queue. (Ex: "ca" "ra")
- * @param p
- * A policy enforcement module. This object is called to make
- * adjustments to the request, and decide whether it needs agent
- * approval.
- * @param s
- * The service object. This object actually performs the request
- * after it is finalized and approved.
- * @param n
- * A notifier object (optional). The notify() method of this object
- * is invoked when the request is completed (COMPLETE, REJECTED or
- * CANCELED states).
* @param pendingNotifier
* A notifier object (optional). Like the 'n' argument, except the
* notification happens if the request is made PENDING. May be the
diff --git a/base/server/cmscore/src/com/netscape/cmscore/request/RequestSubsystem.java b/base/server/cmscore/src/com/netscape/cmscore/request/RequestSubsystem.java
index 78d312851..5867dde17 100644
--- a/base/server/cmscore/src/com/netscape/cmscore/request/RequestSubsystem.java
+++ b/base/server/cmscore/src/com/netscape/cmscore/request/RequestSubsystem.java
@@ -79,12 +79,6 @@ public class RequestSubsystem
}
public IRequestQueue
- getRequestQueue(String name, int increment, IPolicy p, IService s, INotify n)
- throws EBaseException {
- return getRequestQueue(name, increment, p, s, n, null);
- }
-
- public IRequestQueue
getRequestQueue(String name, int increment, IPolicy p, IService s, INotify n,
INotify pendingNotifier)
throws EBaseException {