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

com.springframework.jwt.auth.SimplePermission Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.springframework.jwt.auth;

import org.springframework.web.method.HandlerMethod;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class SimplePermission implements PermissionApi {

    @Override
    public String[] getRoles(HttpServletRequest request, HttpServletResponse response, HandlerMethod handler) {
        return new String[]{request.getRequestURI()};
    }

    @Override
    public String[] getPermission(HttpServletRequest request, HttpServletResponse response, HandlerMethod handler) {
        return new String[0];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy