summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/request
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2015-02-17 23:24:07 -0500
committerFraser Tweedale <ftweedal@redhat.com>2015-04-16 20:08:13 -0400
commit43537423132bc84a000fc5d05217d8876aea4701 (patch)
tree71333dc4e5ae9d743aa6d613786eaa477c08ee5d /base/common/src/com/netscape/certsrv/request
parent679381d555e47e544b6ece60490bf4ebddbb43fa (diff)
downloadpki-43537423132bc84a000fc5d05217d8876aea4701.tar.gz
pki-43537423132bc84a000fc5d05217d8876aea4701.tar.xz
pki-43537423132bc84a000fc5d05217d8876aea4701.zip
Remove unused RequestSubsystem constructor
Diffstat (limited to 'base/common/src/com/netscape/certsrv/request')
-rw-r--r--base/common/src/com/netscape/certsrv/request/IRequestSubsystem.java28
1 files changed, 0 insertions, 28 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