com.alibaba.spring.boot.rsocket.broker.security.RSocketAppPrincipal 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 java.security.Principal;
import java.util.List;
import java.util.Set;
/**
* RSocket APP Principal: 接入认证信息
*
* @author leijuan
*/
public interface RSocketAppPrincipal extends Principal {
/**
* get token id
*
* @return token id
*/
String getTokenId();
String getSubject();
List getAudience();
Set getRoles();
Set getAuthorities();
Set getServiceAccounts();
Set getOrganizations();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy