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

org.voovan.docker.message.node.atom.Description 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.node.atom;

/**
 *
 * @author helyho
 * 

* DockerFly Framework. * WebSite: https://git.oschina.net/helyho/JDocker * Licence: Apache v2 License */ public class Description { private String hostname; private Platform platform; private Resources resources; private Engine engine; public Description() { platform = new Platform(); resources = new Resources(); engine = new Engine(); } public String getHostname() { return hostname; } public void setHostname(String hostname) { this.hostname = hostname; } public Platform getPlatform() { return platform; } public void setPlatform(Platform platform) { this.platform = platform; } public Resources getResources() { return resources; } public void setResources(Resources resources) { this.resources = resources; } public Engine getEngine() { return engine; } public void setEngine(Engine engine) { this.engine = engine; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy