summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/apps
diff options
context:
space:
mode:
authorChristina Fu <cfu@redhat.com>2014-03-24 15:47:16 -0700
committerChristina Fu <cfu@redhat.com>2014-03-25 10:27:26 -0700
commit35b8e2c69b86df07c2897e34861f4c6c636010a7 (patch)
tree3b0b136a81e08d49f5451f757e4a8323fd6c245b /base/common/src/com/netscape/certsrv/apps
parentac40e7abc06a6cae1860ef6d364b84f03c9f1d40 (diff)
downloadpki-35b8e2c69b86df07c2897e34861f4c6c636010a7.tar.gz
pki-35b8e2c69b86df07c2897e34861f4c6c636010a7.tar.xz
pki-35b8e2c69b86df07c2897e34861f4c6c636010a7.zip
trac ticket #862 HTTP connection factory multi-uri addendum
Diffstat (limited to 'base/common/src/com/netscape/certsrv/apps')
-rw-r--r--base/common/src/com/netscape/certsrv/apps/CMS.java28
-rw-r--r--base/common/src/com/netscape/certsrv/apps/ICMSEngine.java24
2 files changed, 0 insertions, 52 deletions
diff --git a/base/common/src/com/netscape/certsrv/apps/CMS.java b/base/common/src/com/netscape/certsrv/apps/CMS.java
index 405e99ecf..fbcf65ac0 100644
--- a/base/common/src/com/netscape/certsrv/apps/CMS.java
+++ b/base/common/src/com/netscape/certsrv/apps/CMS.java
@@ -850,19 +850,6 @@ public final class CMS {
*
* @param authority remote authority
* @param factory socket factory
- * @param op operation to determine receiving servlet (multi-uri support)
- * @return http connection to the remote authority
- */
- public static IHttpConnection getHttpConnection(IRemoteAuthority authority,
- ISocketFactory factory, String op) {
- return _engine.getHttpConnection(authority, factory, op);
- }
-
- /**
- * Retrieves the HTTP Connection for use with connector.
- *
- * @param authority remote authority
- * @param factory socket factory
* @param timeout return error if connection cannot be established within
* the timeout period
* @return http connection to the remote authority
@@ -873,21 +860,6 @@ public final class CMS {
}
/**
- * Retrieves the HTTP Connection for use with connector.
- *
- * @param authority remote authority
- * @param factory socket factory
- * @param timeout return error if connection cannot be established within
- * the timeout period
- * @param op operation to determine receiving servlet (multi-uri support)
- * @return http connection to the remote authority
- */
- public static IHttpConnection getHttpConnection(IRemoteAuthority authority,
- ISocketFactory factory, int timeout, String op) {
- return _engine.getHttpConnection(authority, factory, timeout, op);
- }
-
- /**
* Retrieves the request sender for use with connector.
*
* @param authority local authority
diff --git a/base/common/src/com/netscape/certsrv/apps/ICMSEngine.java b/base/common/src/com/netscape/certsrv/apps/ICMSEngine.java
index fb3881ed3..74fa09003 100644
--- a/base/common/src/com/netscape/certsrv/apps/ICMSEngine.java
+++ b/base/common/src/com/netscape/certsrv/apps/ICMSEngine.java
@@ -1029,17 +1029,6 @@ public interface ICMSEngine extends ISubsystem {
*
* @param authority remote authority
* @param factory socket factory
- * @param op operation to determine receiving servlet (multi-uri support)
- * @return http connection to the remote authority
- */
- public IHttpConnection getHttpConnection(IRemoteAuthority authority,
- ISocketFactory factory, String op);
-
- /**
- * Retrieves the HTTP Connection for use with connector.
- *
- * @param authority remote authority
- * @param factory socket factory
* @param timeout return error if connection cannot be established within
* the timeout period
* @return http connection to the remote authority
@@ -1048,19 +1037,6 @@ public interface ICMSEngine extends ISubsystem {
ISocketFactory factory, int timeout);
/**
- * Retrieves the HTTP Connection for use with connector.
- *
- * @param authority remote authority
- * @param factory socket factory
- * @param timeout return error if connection cannot be established within
- * the timeout period
- * @param op operation to determine receiving servlet (multi-uri support)
- * @return http connection to the remote authority
- */
- public IHttpConnection getHttpConnection(IRemoteAuthority authority,
- ISocketFactory factory, int timeout, String op);
-
- /**
* Retrieves the request sender for use with connector.
*
* @param authority local authority