
io.katharsis.servlet.internal.ServletModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of katharsis-servlet Show documentation
Show all versions of katharsis-servlet Show documentation
Generic Servlet Adapter of Katharsis JSON:API middleware library
The newest version!
package io.katharsis.servlet.internal;
import javax.servlet.http.HttpServletRequest;
import io.katharsis.module.Module;
public class ServletModule implements Module {
private ThreadLocal requestThreadLocal;
public ServletModule(ThreadLocal requestThreadLocal) {
this.requestThreadLocal = requestThreadLocal;
}
@Override
public void setupModule(ModuleContext context) {
context.addSecurityProvider(new ServletSecurityProvider(requestThreadLocal));
}
@Override
public String getModuleName() {
return "servlet";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy