com.github.zhengframework.shiro.jaxrs.ShiroJaxrsModule 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.google.inject.AbstractModule;
import org.apache.shiro.web.jaxrs.ShiroFeature;
public class ShiroJaxrsModule extends AbstractModule {
@Override
protected void configure() {
bind(ShiroFeature.class);
}
}