org.webpieces.plugins.fortesting.BasicController Maven / Gradle / Ivy
package org.webpieces.plugins.fortesting;
import javax.inject.Singleton;
import org.webpieces.router.api.controller.actions.Actions;
import org.webpieces.router.api.controller.actions.Render;
@Singleton
public class BasicController {
public Render notFound() {
return Actions.renderThis();
}
public Render internalError() {
return Actions.renderThis();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy