userpassword.java
来自「Java的框架」· Java 代码 · 共 67 行
JAVA
67 行
package mcaps.core.user.webapp.command;
import java.io.Serializable;
/**
* @author bstan
* @date 16-Jan-2006
* @version 1.0.1.0
*/
public class UserPassword implements Serializable {
private static final long serialVersionUID = 7440454444459287055L;
private String username;
private String password;
private String confirmPassword;
/**
* Returns the confirmPassword.
* @return String
*/
public String getConfirmPassword () {
return confirmPassword;
}
/**
* Sets the confirmPassword.
* @param confirmPassword The confirmPassword to set.
*/
public void setConfirmPassword (String confirmPassword) {
this.confirmPassword = confirmPassword;
}
/**
* Returns the password.
* @return String
*/
public String getPassword () {
return password;
}
/**
* Sets the password.
* @param password The password to set.
*/
public void setPassword (String password) {
this.password = password;
}
/**
* Returns the username.
* @return String
*/
public String getUsername () {
return username;
}
/**
* Sets the username.
* @param username The username to set.
*/
public void setUsername (String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?