Package ch.squaredesk.nova.comm.http
Class HttpRequestSender
- java.lang.Object
-
- ch.squaredesk.nova.comm.http.HttpRequestSender
-
public class HttpRequestSender extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpRequestSender.HttpResponse
-
Method Summary
-
-
-
Method Detail
-
sendPutRequest
public static HttpRequestSender.HttpResponse sendPutRequest(String url, String request) throws IOException
- Throws:
IOException
-
sendPutRequest
public static HttpRequestSender.HttpResponse sendPutRequest(String url, String request, String contentType) throws IOException
- Throws:
IOException
-
sendPutRequest
public static HttpRequestSender.HttpResponse sendPutRequest(URL url, String request) throws IOException
- Throws:
IOException
-
sendPutRequest
public static HttpRequestSender.HttpResponse sendPutRequest(URL url, String request, String contentType) throws IOException
- Throws:
IOException
-
sendPostRequest
public static HttpRequestSender.HttpResponse sendPostRequest(String url, String request) throws IOException
- Throws:
IOException
-
sendPostRequest
public static HttpRequestSender.HttpResponse sendPostRequest(String url, String request, String contentType) throws IOException
- Throws:
IOException
-
sendPostRequest
public static HttpRequestSender.HttpResponse sendPostRequest(URL url, String request) throws IOException
- Throws:
IOException
-
sendPostRequest
public static HttpRequestSender.HttpResponse sendPostRequest(URL url, String request, String contentType) throws IOException
- Throws:
IOException
-
sendGetRequest
public static HttpRequestSender.HttpResponse sendGetRequest(String url) throws IOException
- Throws:
IOException
-
sendGetRequest
public static HttpRequestSender.HttpResponse sendGetRequest(URL url) throws IOException
- Throws:
IOException
-
sendRequest
public static HttpRequestSender.HttpResponse sendRequest(String method, URL url, String request, String contentType) throws IOException
- Throws:
IOException
-
-