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

com.aeontronix.enhancedmule.tools.anypoint.api.SLATierList Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
/*
 * Copyright (c) Aeontronix 2019
 */

package com.aeontronix.enhancedmule.tools.anypoint.api;

import com.aeontronix.enhancedmule.tools.util.HttpException;
import com.aeontronix.enhancedmule.tools.util.PaginatedList;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.aeontronix.commons.URLBuilder;
import org.jetbrains.annotations.NotNull;

import java.util.List;

public class SLATierList extends PaginatedList {
    public SLATierList(API api) throws HttpException {
        super(api);
        download();
    }

    @NotNull
    @Override
    protected URLBuilder buildUrl() {
        return new URLBuilder("/apimanager/api/v1/organizations/" + parent.getParent().getParent().getId() +
                "/environments/" + parent.getParent().getId() + "/apis/" + parent.getId() + "/tiers");
    }

    @JsonProperty
    public List getTiers() {
        return list;
    }

    public void setTiers(List tiers) {
        this.list = tiers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy