String |
RestfulHttpRequest.doDelete(AppSession appSession,
String httpDeleteUrl) |
String |
RestfulHttpRequest.doDelete(AppSession appSession,
String httpDeleteUrl,
Map<String,Object> queryParam) |
static String |
RestfulHttpRequest.formPost(AppSession appSession,
String httpPostUrl,
Object formData) |
static String |
RestfulHttpRequest.formPost(AppSession appSession,
String httpPostUrl,
Object formData,
boolean asPut) |
static String |
RestfulHttpRequest.formPut(AppSession appSession,
String httpPostUrl,
Object formData) |
static HttpReceiveJSON |
RestfulHttpRequest.getResponseData(AppSession appSession,
String httpGetUrl) |
static HttpReceiveJSON |
RestfulHttpRequest.getResponseData(AppSession appSession,
String httpGetUrl,
Map<String,Object> queryParam) |
static <T> T |
RestfulHttpRequest.getResponseObject(AppSession appSession,
String httpGetUrl,
Class<T> clazz) |
static <T> T |
RestfulHttpRequest.getResponseObject(AppSession appSession,
String httpGetUrl,
Map<String,Object> queryParam,
Class<T> clazz) |
static <T> List<T> |
RestfulHttpRequest.getResponseObjectList(AppSession appSession,
String httpGetUrl,
Class<T> clazz) |
static <T> List<T> |
RestfulHttpRequest.getResponseObjectList(AppSession appSession,
String httpGetUrl,
Map<String,Object> queryParam,
Class<T> clazz) |
static String |
RestfulHttpRequest.jsonPost(AppSession appSession,
String httpPostUrl,
Object formData) |
static String |
RestfulHttpRequest.jsonPost(AppSession appSession,
String httpPostUrl,
Object formData,
boolean asPut) |
static String |
RestfulHttpRequest.jsonPut(AppSession appSession,
String httpPostUrl,
Object formData) |