
org.esigate.events.Event Maven / Gradle / Ivy
package org.esigate.events;
/**
* This class contains the common attributes for all events.
*
* @author Nicolas Richeton
*
*/
public abstract class Event {
/**
* Immediately stop request processing. Depending of the current state, this may render the current response (if
* available) or else render an error page.
*/
private boolean exit = false;
public boolean isExit() {
return exit;
}
public void setExit(boolean exit) {
this.exit = exit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy