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

org.beifengtz.jvmm.server.entity.conf.ServerConf Maven / Gradle / Ivy

Go to download

Provides access to operating system, process, thread and other information during Java runtime.

There is a newer version: 2.4.3
Show newest version
package org.beifengtz.jvmm.server.entity.conf;

/**
 * 

* Description: TODO *

*

* Created in 11:24 2022/9/7 * * @author beifengtz */ public class ServerConf { private String type = "jvmm"; private JvmmServerConf jvmm = new JvmmServerConf(); private HttpServerConf http; private SentinelConf sentinel; public String getType() { return type; } public ServerConf setType(String type) { this.type = type; return this; } public JvmmServerConf getJvmm() { return jvmm; } public ServerConf setJvmm(JvmmServerConf jvmm) { this.jvmm = jvmm; return this; } public HttpServerConf getHttp() { return http; } public ServerConf setHttp(HttpServerConf http) { this.http = http; return this; } public SentinelConf getSentinel() { return sentinel; } public ServerConf setSentinel(SentinelConf sentinel) { this.sentinel = sentinel; return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy