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

io.quarkiverse.playpen.kubernetes.crds.PlaypenSpec Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.quarkiverse.playpen.kubernetes.crds;

public class PlaypenSpec {
    private String config;
    private String configNamespace;
    private Integer nodePort;
    private String logLevel;

    public String getConfig() {
        return config;
    }

    public void setConfig(String config) {
        this.config = config;
    }

    public Integer getNodePort() {
        return nodePort;
    }

    public void setNodePort(Integer nodePort) {
        this.nodePort = nodePort;
    }

    public String getLogLevel() {
        return logLevel;
    }

    public void setLogLevel(String logLevel) {
        this.logLevel = logLevel;
    }

    public String getConfigNamespace() {
        return configNamespace;
    }

    public void setConfigNamespace(String configNamespace) {
        this.configNamespace = configNamespace;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy