All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tynamo.security.services.TapestryRealmSecurityManager Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy