model.Password Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
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