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

com.github.panchitoboy.shiro.jwt.repository.UserDefault Maven / Gradle / Ivy

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

import java.util.HashSet;
import java.util.Set;
import org.apache.shiro.authc.AuthenticationToken;

public interface UserDefault extends AuthenticationToken {

    default Set getRoles() {
        Set roles = new HashSet<>();
        roles.add("default");
        return roles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy