Package com.redwood.scheduler.api.model
Interface SecurityPrivilege
-
- All Superinterfaces:
Serializable
public interface SecurityPrivilege extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Get the name of this privilege.com.redwood.scheduler.api.model.enumeration.PrivilegeType
getPrivilegeType()
Get the type of privilege that this is.String
getTranslation()
Get the translation-key that can be used to retrieve the locale-specific name of this privilege.
-
-
-
Method Detail
-
getName
String getName()
Get the name of this privilege.- Returns:
- the name of this privilege.
-
getTranslation
String getTranslation()
Get the translation-key that can be used to retrieve the locale-specific name of this privilege.- Returns:
- the key that can be passed to
SchedulerSession.translateField(String)
to retrieve the translated name.
-
getPrivilegeType
com.redwood.scheduler.api.model.enumeration.PrivilegeType getPrivilegeType()
Get the type of privilege that this is.- Returns:
- the type of privilege that this privilege is.
-
-