
net.yapbam.data.event.PasswordChangedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yapbam-commons Show documentation
Show all versions of yapbam-commons Show documentation
Commons Yapbam classes used by desktop and Android versions.
package net.yapbam.data.event;
public class PasswordChangedEvent extends DataEvent {
private String old;
private String password;
public PasswordChangedEvent(Object source, String old, String password) {
super(source);
this.old = old;
this.password = password;
}
public String getOldPassword() {
return old;
}
public String getPassword() {
return password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy