org.trailsframework.security.services.WebRealmSecurityManagerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapestry-jsecurity Show documentation
Show all versions of tapestry-jsecurity Show documentation
Trails Security package based on JSecurity 0.9
The newest version!
package org.trailsframework.security.services;
import java.util.Collection;
import org.jsecurity.realm.Realm;
import org.jsecurity.web.DefaultWebSecurityManager;
/**
* Needed just to point out to tapestry-ioc the right constructor to use (from the three available in
* DefaultWebSecurityManager)
*/
public class WebRealmSecurityManagerImpl extends DefaultWebSecurityManager {
public WebRealmSecurityManagerImpl(final Collection realms) {
super(realms);
}
}