All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.esigate.events.Event Maven / Gradle / Ivy

There is a newer version: 5.3
Show newest version
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