Commit f02baf51 by Jan Hrabal

chp

parent 9dc39721
package com.jh.boot.security.api;
public class ChangePassword {
private String currentPassword;
private String password;
private String passwordCheck;
public ChangePassword() {
super();
}
public ChangePassword(String currentPassword, String password, String passwordCheck) {
super();
this.currentPassword = currentPassword;
this.password = password;
this.passwordCheck = passwordCheck;
}
public String getCurrentPassword() {
return currentPassword;
}
public void setCurrentPassword(String currentPassword) {
this.currentPassword = currentPassword;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPasswordCheck() {
return passwordCheck;
}
public void setPasswordCheck(String passwordCheck) {
this.passwordCheck = passwordCheck;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment