summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/ccbapi/HTTPInterface.java
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2016-03-27 08:02:14 -0700
committerJesse Morgan <jesse@jesterpm.net>2016-03-27 08:02:14 -0700
commit6d987e0dd18ef830484641166a816661f4b16074 (patch)
treeeffaccb0a85cebca64e39ea8aa4545d59306cfc6 /src/main/java/com/p4square/ccbapi/HTTPInterface.java
parentf4cb9e6a44c016c0200a9291f25003c72e2551cd (diff)
Adding the update_individual API
Diffstat (limited to 'src/main/java/com/p4square/ccbapi/HTTPInterface.java')
-rw-r--r--src/main/java/com/p4square/ccbapi/HTTPInterface.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/p4square/ccbapi/HTTPInterface.java b/src/main/java/com/p4square/ccbapi/HTTPInterface.java
index 11d87ec..9c5e818 100644
--- a/src/main/java/com/p4square/ccbapi/HTTPInterface.java
+++ b/src/main/java/com/p4square/ccbapi/HTTPInterface.java
@@ -24,11 +24,11 @@ public interface HTTPInterface extends Closeable {
* The form data for the request is specified in the form Map.
*
* @param uri The URI to request.
- * @param form Map of key/value pairs to send as form data.
+ * @param form Form data or null.
* @return The response received.
* @throws com.p4square.ccbapi.exception.CCBRetryableErrorException
* @throws CCBRetryableErrorException if a retryable error occurs.
* @throws IOException If a non-retryable error occurs.
*/
- InputStream sendPostRequest(URI uri, Map<String, String> form) throws IOException;
+ InputStream sendPostRequest(URI uri, byte[] form) throws IOException;
}