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

org.voovan.docker.message.container.atom.Process 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.container.atom;

/**
 *
 * @author helyho
 * 

* DockerFly Framework. * WebSite: https://git.oschina.net/helyho/JDocker * Licence: Apache v2 License */ public class Process { private String user; private String pid; private String ppid; private String c; private String stime; private String tty; private String time; private String command; public String getUser() { return user; } public void setUser(String user) { this.user = user; } public String getPid() { return pid; } public void setPid(String pid) { this.pid = pid; } public String getPpid() { return ppid; } public void setPpid(String ppid) { this.ppid = ppid; } public String getC() { return c; } public void setC(String c) { this.c = c; } public String getStime() { return stime; } public void setStime(String stime) { this.stime = stime; } public String getTty() { return tty; } public void setTty(String tty) { this.tty = tty; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public String getCommand() { return command; } public void setCommand(String command) { this.command = command; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy