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

io.afu.common.dto.req.ChangePwd Maven / Gradle / Ivy

package io.afu.common.dto.req;

import javax.validation.constraints.NotEmpty;

public class ChangePwd {

    @NotEmpty
    private String oldPwd;

    @NotEmpty
    private String newPwd;


    public String getOldPwd() {
        return oldPwd;
    }

    public void setOldPwd(String oldPwd) {
        this.oldPwd = oldPwd;
    }

    public String getNewPwd() {
        return newPwd;
    }

    public void setNewPwd(String newPwd) {
        this.newPwd = newPwd;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy