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

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

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

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

import com.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 - 2025 Weber Informatics LLC | Privacy Policy