summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/connector
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/connector
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/connector')
-rw-r--r--base/common/src/com/netscape/certsrv/connector/IHttpConnection.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/connector/IHttpConnection.java b/base/common/src/com/netscape/certsrv/connector/IHttpConnection.java
index 2e871851b..598582b3b 100644
--- a/base/common/src/com/netscape/certsrv/connector/IHttpConnection.java
+++ b/base/common/src/com/netscape/certsrv/connector/IHttpConnection.java
@@ -49,4 +49,16 @@ public interface IHttpConnection {
*/
public HttpResponse send(String msg)
throws EBaseException;
+
+ /**
+ * Sets the HttpRequest URI before send
+ * @param uri the uri for the HttpRequest
+ */
+ public void setRequestURI(String uri)
+ throws EBaseException;
+
+ /**
+ * Gets the HttpRequest URI
+ */
+ public String getRequestURI();
}