com.github.zhengframework.shiro.jaxrs.ShiroJaxrsModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-shiro-jaxrs Show documentation
Show all versions of zheng-shiro-jaxrs Show documentation
zheng framework module: shiro jaxrs support
package com.github.zhengframework.shiro.jaxrs;
import com.github.zhengframework.core.ModuleProvider;
import com.google.inject.Module;
public class ShiroJaxrsModuleProvider implements ModuleProvider {
@Override
public Module getModule() {
return new ShiroJaxrsModule();
}
}