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

io.buji.pac4j.engine.ShiroSecurityLogic Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
package io.buji.pac4j.engine;

import org.pac4j.core.context.WebContext;
import org.pac4j.core.engine.DefaultSecurityLogic;

import io.buji.pac4j.profile.ShiroProfileManager;

/**
 * Specialized SecurityLogic aimed for buji : makes a clean use of the ShiroProfileManager.
 *
 * @see DefaultSecurityLogic
 *
 * @author Andre Doherty
 * @since 3.2.0
 */
public class ShiroSecurityLogic extends DefaultSecurityLogic {

    public ShiroSecurityLogic() {
        super();
        this.setProfileManagerFactory(ShiroProfileManager::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy