express.filter.Filter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-express Show documentation
Show all versions of java-express Show documentation
HTTP Framework based on expressjs, no dependencies, simple usage.
The newest version!
package express.filter;
/**
* @author Simon Reinisch
*
* ExpressFilter to save middleware data, the name is the indentifier.
*/
public interface Filter {
/**
* Identifier for the middleware
*
* @return The filter name
*/
String getName();
}