![JAR search and dependency download from the Maven repository](/logo.png)
com.techempower.gemini.path.NotImplementedHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemini Show documentation
Show all versions of gemini Show documentation
Gemini is a web framework created by TechEmpower.
package com.techempower.gemini.path;
import com.techempower.gemini.Context;
public class NotImplementedHandler
implements PathHandler
{
@Override
public boolean prehandle(PathSegments segments, C context) {
//Do Nothing
return false;
}
@Override
public boolean handle(PathSegments segments, C context)
{
context.setStatus(501);
return true;
}
@Override
public void posthandle(PathSegments segments, C context)
{
// Do nothing
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy