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

model.Password Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

public class Password {
    private String hhSalt;
    private String hhPassword;
    private String khSalt;
    private String khPassword;

    public String gethSalt() {
        return hhSalt;
    }

    public void sethSalt(String hhSalt) {
        this.hhSalt = hhSalt;
    }

    public String gethPassword() {
        return hhPassword;
    }

    public void sethPassword(String hhPassword) {
        this.hhPassword = hhPassword;
    }

    public String getKhSalt() {
        return khSalt;
    }

    public void setKhSalt(String khSalt) {
        this.khSalt = khSalt;
    }

    public String getKhPassword() {
        return khPassword;
    }

    public void setKhPassword(String khPassword) {
        this.khPassword = khPassword;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy