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

com.jn.langx.util.os.virtualization.RuntimeContainer Maven / Gradle / Ivy

Go to download

Java lang extensions for java6+, a supplement to , replacement of a Guava, commons-lang. Core utilities, Collection utilities, IO utilities, Cache, Configuration library ...

There is a newer version: 4.8.2
Show newest version
package com.jn.langx.util.os.virtualization;

import java.util.Map;

public class RuntimeContainer {
    /**
     * 容器类型,目前最为流行的是 docker
     */
    private String type;
    private Map props;

    public RuntimeContainer(String type){
        this.type = type;
    }

    public RuntimeContainer(String type, Map props){
        this.type = type;
        this.props = props;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public Map getProps() {
        return props;
    }

    public void setProps(Map props) {
        this.props = props;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy