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

org.trailsframework.security.services.WebRealmSecurityManagerImpl Maven / Gradle / Ivy

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy