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

org.voovan.docker.message.auth.AuthRequest Maven / Gradle / Ivy

package org.voovan.docker.message.auth;

/**
 * 类文字命名
 *
 * @author helyho
 *         

* JDocker Framework. * WebSite: https://github.com/helyho/JDocker * Licence: Apache v2 License */ public class AuthRequest { private String username; private String password; private String email; private String serveraddress; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getServeraddress() { return serveraddress; } public void setServeraddress(String serveraddress) { this.serveraddress = serveraddress; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy