com.heroku.api.request.team.TeamInvoiceList Maven / Gradle / Ivy
package com.heroku.api.request.team;
import com.heroku.api.Heroku;
import com.heroku.api.Invoice;
import com.heroku.api.TeamApp;
import com.heroku.api.exception.RequestFailedException;
import com.heroku.api.http.Http;
import com.heroku.api.http.HttpUtil;
import com.heroku.api.parser.Json;
import com.heroku.api.request.Request;
import com.heroku.api.util.Range;
import java.util.HashMap;
import java.util.Map;
import static com.heroku.api.http.HttpUtil.noBody;
/**
* TODO: Javadoc
*
* @author Joe Kutner
*/
public class TeamInvoiceList implements Request> {
private Map headers = new HashMap<>();
private String team;
public TeamInvoiceList(String teamNameOrId) {
this.team = teamNameOrId;
}
public TeamInvoiceList(String teamNameOrId, String range) {
this(teamNameOrId);
this.headers.put("Range", range);
}
@Override
public Http.Method getHttpMethod() {
return Http.Method.GET;
}
@Override
public String getEndpoint() {
return Heroku.Resource.TeamInvoices.format(team);
}
@Override
public boolean hasBody() {
return false;
}
@Override
public String getBody() {
throw HttpUtil.noBody();
}
@Override
public Map getBodyAsMap() {
throw noBody();
}
@Override
public Http.Accept getResponseType() {
return Http.Accept.JSON;
}
@Override
public Map getHeaders() {
return headers;
}
@Override
public Range getResponse(byte[] in, int code, Map responseHeaders) {
if (code == 200) {
return Json.parse(in, TeamInvoiceList.class);
} else if (code == 206) {
Range r = Json.parse(in, TeamInvoiceList.class);
r.setNextRange(responseHeaders.get("Next-Range"));
return r;
} else {
throw new RequestFailedException("TeamInvoiceList Failed", code, in);
}
}
}