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

com.github.panchitoboy.shiro.jwt.producer.SecurityProducer Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.github.panchitoboy.shiro.jwt.producer;

import javax.enterprise.inject.Produces;
import javax.inject.Named;
import org.apache.shiro.authc.credential.DefaultPasswordService;
import org.apache.shiro.authc.credential.PasswordService;
import org.ops4j.pax.shiro.cdi.ShiroIni;

public class SecurityProducer {

    @Produces
    @ShiroIni
    @Named
    public PasswordService passwordService() {
        return new DefaultPasswordService();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy