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

io.buji.pac4j.engine.ShiroCallbackLogic 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.DefaultCallbackLogic;

import io.buji.pac4j.profile.ShiroProfileManager;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy