org.tynamo.security.services.TapestryRealmSecurityManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapestry-security Show documentation
Show all versions of tapestry-security Show documentation
Tynamo Security package for Tapestry 5 based on Shiro Security
package org.tynamo.security.services;
import java.util.Collection;
import org.apache.shiro.realm.Realm;
import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
/**
* Needed just to point out to tapestry-ioc the right constructor to use (from the three available in
* DefaultWebSecurityManager)
*/
public class TapestryRealmSecurityManager extends DefaultWebSecurityManager {
public TapestryRealmSecurityManager(final Collection realms) {
super(realms);
}
}