org.webpieces.plugins.hsqldb.H2DbRoutes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of h2db-plugin Show documentation
Show all versions of h2db-plugin Show documentation
Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property
The newest version!
package org.webpieces.plugins.hsqldb;
import org.webpieces.ctx.api.HttpMethod;
import org.webpieces.router.api.routing.AbstractRoutes;
public class H2DbRoutes extends AbstractRoutes {
@Override
protected void configure() {
addRoute(HttpMethod.GET, "/@db", "H2DbController.databaseGui", H2DbRouteId.GET_DATABASE_PAGE);
}
}