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

org.beifengtz.jvmm.server.entity.conf.AuthOptionConf 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:27 2022/9/7 * * @author beifengtz */ public class AuthOptionConf { private boolean enable; private String username; private String password; public boolean isEnable() { return enable; } public AuthOptionConf setEnable(boolean enable) { this.enable = enable; return this; } public String getUsername() { return username; } public AuthOptionConf setUsername(String username) { this.username = username; return this; } public String getPassword() { return password; } public AuthOptionConf setPassword(String password) { this.password = password; return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy