com.codota.service.client.requests.NakedPostRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codota-sdk-java Show documentation
Show all versions of codota-sdk-java Show documentation
Java SDK for working with the Codota API
package com.codota.service.client.requests;
import com.codota.service.client.CodotaConnectionException;
import com.codota.service.client.CodotaHttpException;
import com.codota.service.client.CodotaResponse;
import com.codota.service.client.requests.base.Request;
import com.codota.service.connector.ServiceConnector;
/**
* Created by yahave on 3/3/16.
* (C) Codota
*/
public abstract class NakedPostRequest extends Request {
String jsonString;
public NakedPostRequest(ServiceConnector connector, String route, String token) {
super(connector, route, token);
}
public NakedPostRequest withJsonString(String json) {
this.jsonString = json;
return this;
}
public T run() throws CodotaConnectionException, CodotaHttpException {
T result;
CodotaResponse response = (getBodyAttributes() != null) ?
connector.post(getRoute(),getBodyAttributes(),getToken())
: connector.postJson(getRoute(), jsonString, getToken());
if (response == null) {
throw new CodotaConnectionException();
}
if (response.isOK()) {
result = parse(response.content);
} else {
throw new CodotaHttpException(response.status, response.content);
}
return result;
}
public abstract T parse(String response);
}