package envoy.event; /** * This class acts as a notice to the user whether his * {@link envoy.event.PasswordChangeRequest} was successful. *

* Project: envoy-common
* File: PasswordChangeResult.java
* Created: 01.08.2020
* * @author Leon Hofmeister * @since Envoy Common v0.2-beta */ public class PasswordChangeResult extends Event { private static final long serialVersionUID = 1L; /** * Creates an instance of {@code PasswordChangeResult}. * * @param value whether the preceding {@link envoy.event.PasswordChangeRequest} * was successful. * @since Envoy Common v0.2-beta */ public PasswordChangeResult(boolean value) { super(value); } }