All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.fabric8.docker.client.EditableConfig Maven / Gradle / Ivy
package io.fabric8.docker.client;
import io.sundr.builder.Editable;
import java.util.HashMap;
import java.util.Map;
import java.io.Serializable;
import java.util.Map;
import io.fabric8.docker.api.model.AuthConfig;
import java.util.AbstractMap;
public class EditableConfig extends Config implements Editable{
public EditableConfig(){
super();
}
public EditableConfig( boolean trustCerts , String masterUrl , String caCertFile , String caCertData , String clientCertFile , String clientCertData , String clientKeyFile , String clientKeyData , String clientKeyAlgo , String clientKeyPassphrase , String username , String password , String oauthToken , int imageBuildTimeout , int imagePushTimeout , int imageSearchTimeout , int connectionTimeout , int requestTimeout , String httpProxy , String httpsProxy , String[] noProxy , Map authConfigs ){
super(trustCerts, masterUrl, caCertFile, caCertData, clientCertFile, clientCertData, clientKeyFile, clientKeyData, clientKeyAlgo, clientKeyPassphrase, username, password, oauthToken, imageBuildTimeout, imagePushTimeout, imageSearchTimeout, connectionTimeout, requestTimeout, httpProxy, httpsProxy, noProxy, authConfigs);
}
public ConfigBuilder edit(){
return new ConfigBuilder(this);
}
}