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

org.voovan.docker.message.swarm.atom.ExternalCA Maven / Gradle / Ivy

Go to download

By encapsulating the Docker API enables developers to use Java can quickly developed the control and operation of the Docker application, using streaming operation, simple and clear.

The newest version!
package org.voovan.docker.message.swarm.atom;

import java.util.HashMap;
import java.util.Map;

/**
 * 类文字命名
 *
 * @author helyho
 *         

* JDocker Framework. * WebSite: https://github.com/helyho/JDocker * Licence: Apache v2 License */ public class ExternalCA { private String protocol; private String url; private Map options; public ExternalCA(String protocol, String url, Map options) { this.protocol = protocol; this.url = url; this.options = options; } public ExternalCA() { options = new HashMap(); } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Map getOptions() { return options; } public void setOptions(Map options) { this.options = options; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy