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

com.envision.security.MarsAuthority Maven / Gradle / Ivy

The newest version!
package com.envision.security;

import org.springframework.stereotype.Service;

/**
 * @author Reimu
 * @date 2018/11/15
 */
@Service("myPermissionService")
public class MarsAuthority {

    public boolean hasRole(String userId, String secret, Integer roleId) {

        return true;
    }

    public boolean hasPermission(String appId, String permissionId) {

        return true;
    }

    public boolean hasPermission(String appId) {

        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy