All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.heroku.api.request.stack.StackList Maven / Gradle / Ivy

There is a newer version: 0.46
Show newest version
package com.heroku.api.request.stack;

import com.heroku.api.Heroku;
import com.heroku.api.StackInfo;
import com.heroku.api.exception.RequestFailedException;
import com.heroku.api.http.Http;
import com.heroku.api.request.Request;
import com.heroku.api.request.RequestConfig;

import java.util.Collections;
import java.util.List;
import java.util.Map;

import static com.heroku.api.http.HttpUtil.noBody;
import static com.heroku.api.parser.Json.parse;

/**
 * @author Naaman Newbold
 */
public class StackList implements Request>{
    private final RequestConfig config;

    public StackList() {
        this.config = new RequestConfig();
    }

    @Override
    public Http.Method getHttpMethod() {
        return Http.Method.GET;
    }

    @Override
    public String getEndpoint() {
        return Heroku.Resource.Stacks.value;
    }

    @Override
    public boolean hasBody() {
        return false;
    }

    @Override
    public String getBody() {
        throw noBody();
    }

    @Override
    public Map getBodyAsMap() {
        throw noBody();
    }

    @Override
    public Http.Accept getResponseType() {
        return Http.Accept.JSON;
    }

    @Override
    public Map getHeaders() {
        return Collections.emptyMap();
    }

    @Override
    public List getResponse(byte[] bytes, int status, Map responseHeaders) {
        if (Http.Status.OK.equals(status)) {
            return parse(bytes, getClass());
        } else {
            throw new RequestFailedException("Unable to list stacks.", status, bytes);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy