package envoy.event; /** * This class acts as a notice to the user whether his {@link envoy.event.PasswordChangeRequest} was * successful. * * @author Leon Hofmeister * @since Envoy Common v0.2-beta */ public final 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); } }