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

com.axway.apim.setup.model.APIManagerConfig Maven / Gradle / Ivy

package com.axway.apim.setup.model;

import com.axway.apim.api.model.Alerts;
import com.axway.apim.api.model.Config;
import com.axway.apim.api.model.RemoteHost;
import com.fasterxml.jackson.annotation.JsonFilter;

import java.util.Map;

@JsonFilter("APIManagerConfigFilter")
public class APIManagerConfig {

	private Config config;

	private Map remoteHosts;

	private Alerts alerts;

    private Quotas quotas;

	public Config getConfig() {
		return config;
	}

	public void setConfig(Config config) {
		this.config = config;
	}

	public Map getRemoteHosts() {
		return remoteHosts;
	}

	public void setRemoteHosts(Map remoteHosts) {
		this.remoteHosts = remoteHosts;
	}

	public Alerts getAlerts() {
		return alerts;
	}

	public void setAlerts(Alerts alerts) {
		this.alerts = alerts;
	}

    public Quotas getQuotas() {
        return quotas;
    }

    public void setQuotas(Quotas quotas) {
        this.quotas = quotas;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy