com.alibaba.spring.boot.rsocket.broker.security.AuthenticationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibaba-broker-spring-boot-starter Show documentation
Show all versions of alibaba-broker-spring-boot-starter Show documentation
Alibaba RSocket Broker Spring Boot Starter for extension
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