Interface GroupPrivilege
-
public interface GroupPrivilege
Represents a privilege object- Since:
- 12.29
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getGroupingName(java.util.Locale language)
Returns the grouping name of this privilege in the specified language.int
getId()
java.lang.String
getName(java.util.Locale language)
Returns the name of this privilege in the specified language.
-
-
-
Method Detail
-
getId
int getId()
- Returns:
- the id of this privilege
- Since:
- 12.29
-
getName
java.lang.String getName(java.util.Locale language)
Returns the name of this privilege in the specified language. If the specified language is not supported the configured default language of the novomind iAGENT system will be used instead. Please note that only the language attribute of the givenLocale
is used.- Parameters:
language
- the language used to localize the name of this privilege- Returns:
- the name of this privilege in the specified language
- Since:
- 12.29
-
getGroupingName
java.lang.String getGroupingName(java.util.Locale language)
Returns the grouping name of this privilege in the specified language. If the specified language is not supported the configured default language of the novomind iAGENT system will be used instead. Please note that only the language attribute of the givenLocale
is used.- Parameters:
language
- the language used to localize the grouping name of this privilege- Returns:
- the grouping name of this privilege in the specified language
- Since:
- 12.29
-
-