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

com.fitbur.github.dockerjava.api.model.AuthConfigurations Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.fitbur.github.dockerjava.api.model;

import java.util.Map;
import java.util.TreeMap;

import com.fitbur.fasterxml.jackson.annotation.JsonProperty;

public class AuthConfigurations {

    @JsonProperty("configs")
    private Map configs = new TreeMap<>();

    public void addConfig(AuthConfig authConfig) {
        configs.put(authConfig.getServerAddress(), authConfig);
    }

    public Map getConfigs() {
        return this.configs;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy