Package org.bonitasoft.engine.identity
Interface Group
-
- All Superinterfaces:
BonitaObject,Serializable
- All Known Implementing Classes:
GroupImpl
public interface Group extends BonitaObject
Represents a group inside the organization.- Since:
- 6.0.0
- Author:
- Lu Kai, Bole Zhang, Matthieu Chaffotte
- See Also:
- "org.bonitasoft.engine.api.GroupAPI"
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCreatedBy()DategetCreationDate()StringgetDescription()StringgetDisplayName()LonggetIconId()longgetId()DategetLastUpdate()StringgetName()StringgetParentPath()StringgetPath()
-
-
-
Method Detail
-
getId
long getId()
- Returns:
- The identifier of the group.
-
getName
String getName()
- Returns:
- The name of the group.
-
getDisplayName
String getDisplayName()
- Returns:
- The identifier of the group to display.
-
getDescription
String getDescription()
- Returns:
- The description of the group.
-
getIconId
Long getIconId()
- Returns:
- the id of the icon of this group or null
- Since:
- 7.3.0
-
getCreatedBy
long getCreatedBy()
- Returns:
- The identifier of the user that created the group
-
getCreationDate
Date getCreationDate()
- Returns:
- The group's creation's date
-
getLastUpdate
Date getLastUpdate()
- Returns:
- The group's last update date
-
getParentPath
String getParentPath()
- Returns:
- The group's path
-
getPath
String getPath()
- Returns:
- The group's full path (i.e. with its parent path)
-
-