001 package org.tynamo.security.services;
002
003 import java.util.Collection;
004
005 import org.apache.shiro.realm.Realm;
006 import org.apache.shiro.web.mgt.DefaultWebSecurityManager;
007
008 /**
009 * Needed just to point out to tapestry-ioc the right constructor to use (from the three available in
010 * DefaultWebSecurityManager)
011 */
012 public class TapestryRealmSecurityManager extends DefaultWebSecurityManager {
013
014 public TapestryRealmSecurityManager(final Collection<Realm> realms) {
015 super(realms);
016 }
017
018 }