mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-25 06:58:39 +00:00
10 lines
193 B
Java
Executable File
10 lines
193 B
Java
Executable File
package com.sap.sse.security.shared;
|
|
|
|
import java.util.Set;
|
|
|
|
import com.sap.sse.common.NamedWithID;
|
|
|
|
public interface Role extends NamedWithID {
|
|
Set<WildcardPermission> getPermissions();
|
|
}
|