summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java
diff options
context:
space:
mode:
authorawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2010-11-01 00:13:04 +0000
committerawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2010-11-01 00:13:04 +0000
commite23c1a7269e958754f1e0368e0951488828a5eb1 (patch)
treeee9e6cc8f2ec6ed91bfd4f4bff49f5c6d70c19fd /pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java
parent7126c0f0fe1dc20d78de27170b28fd2e2d6829f1 (diff)
downloadpki-e23c1a7269e958754f1e0368e0951488828a5eb1.tar.gz
pki-e23c1a7269e958754f1e0368e0951488828a5eb1.tar.xz
pki-e23c1a7269e958754f1e0368e0951488828a5eb1.zip
Fixed bugzilla bug #516632.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1451 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java')
-rw-r--r--pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java b/pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java
index 92e61747b..b6af76584 100644
--- a/pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java
+++ b/pki/base/common/src/com/netscape/certsrv/request/IRequestNotifier.java
@@ -114,4 +114,18 @@ public interface IRequestNotifier extends INotify {
* @param r request
*/
public void addToNotify(IRequest r);
+
+ /**
+ * Sets publishing queue parameters.
+ *
+ * @param isPublishingQueueEnabled publishing queue switch
+ * @param publishingQueuePriorityLevel publishing queue priority level
+ * @param maxNumberOfPublishingThreads maximum number of publishing threads
+ * @param publishingQueuePageSize publishing queue page size
+ */
+ public void setPublishingQueue (boolean isPublishingQueueEnabled,
+ int publishingQueuePriorityLevel,
+ int maxNumberOfPublishingThreads,
+ int publishingQueuePageSize);
+
}