You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
369 B

package de.fd.fh.server.user.events;
import de.fd.fh.server.user.UserId;
import lombok.Getter;
@Getter
public class ChangePasswordEvent
{
private final String newPassword;
private final UserId userId;
public ChangePasswordEvent(final UserId userId, final String password)
{
this.newPassword = password;
this.userId = userId;
}
}