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

com.heroku.api.Release Maven / Gradle / Ivy

package com.heroku.api;

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

/**
 * TODO: Javadoc
 *
 * @author Naaman Newbold
 */
public class Release {
    String name, descr,user, commit;
    String created_at;
    Map env;
    List addons;
    Map pstable;

    public String getName() {
        return name;
    }

    private void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return descr;
    }

    private void setDescr(String descr) {
        this.descr = descr;
    }

    public String getUser() {
        return user;
    }

    private void setUser(String user) {
        this.user = user;
    }

    public String getCommit() {
        return commit;
    }

    private void setCommit(String commit) {
        this.commit = commit;
    }

    public String getCreatedAt() {
        return created_at;
    }

    private void setCreated_at(String created_at) {
        this.created_at = created_at;
    }

    public Map getEnv() {
        return env;
    }

    private void setEnv(Map env) {
        this.env = env;
    }

    public List getAddons() {
        return addons;
    }

    private void setAddons(List addons) {
        this.addons = addons;
    }

    public Map getPSTable() {
        return pstable;
    }

    private void setPstable(Map pstable) {
        this.pstable = pstable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy