com.fitbur.github.dockerjava.api.model.AuthConfigurations Maven / Gradle / Ivy
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