io.javalin.Extension Maven / Gradle / Ivy
The newest version!
/*
* Javalin - https://javalin.io
* Copyright 2017 David Åse
* Licensed under Apache 2.0: https://github.com/tipsy/javalin/blob/master/LICENSE
*
*/
package io.javalin;
/**
* An extension is a modular way of adding functionality to a Javalin instance.
* For use with {@link Javalin#register}.
*/
@FunctionalInterface
public interface Extension {
void registerOnJavalin(Javalin app);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy