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

org.togglz.console.RequestHandler Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package org.togglz.console;

import java.io.IOException;

public interface RequestHandler {

    boolean handles(String path);

    boolean adminOnly();

    void process(RequestEvent event) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy