org.beifengtz.jvmm.server.entity.conf.SubscriberConf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jvmm-server Show documentation
Show all versions of jvmm-server Show documentation
Provides access to operating system, process, thread and other information during Java runtime.
package org.beifengtz.jvmm.server.entity.conf;
/**
*
* Description: TODO
*
*
* Created in 11:33 2022/9/7
*
* @author beifengtz
*/
public class SubscriberConf {
private String url;
private AuthOptionConf auth;
public String getUrl() {
return url;
}
public SubscriberConf setUrl(String url) {
this.url = url;
return this;
}
public AuthOptionConf getAuth() {
return auth;
}
public SubscriberConf setAuth(AuthOptionConf auth) {
this.auth = auth;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy