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

com.alibaba.spring.boot.rsocket.broker.security.AuthenticationService Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package com.alibaba.spring.boot.rsocket.broker.security;

import org.jetbrains.annotations.Nullable;

/**
 * authentication service
 *
 * @author leijuan
 */
public interface AuthenticationService {

    @Nullable
    RSocketAppPrincipal auth(String type, String credentials);

    String generateCredentials(String id, String[] organizations, String[] serviceAccounts, String[] roles, String[] authorities, String sub, String[] audience) throws Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy