Package com.google.gerrit.entities
Interface GroupDescription.Internal
-
- All Superinterfaces:
GroupDescription.Basic
- All Known Implementing Classes:
InternalGroupDescription
- Enclosing class:
- GroupDescription
public static interface GroupDescription.Internal extends GroupDescription.Basic
The extended information exposed by internal groups.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instant
getCreatedOn()
String
getDescription()
AccountGroup.Id
getId()
Set<Account.Id>
getMembers()
AccountGroup.UUID
getOwnerGroupUUID()
Set<AccountGroup.UUID>
getSubgroups()
boolean
isVisibleToAll()
-
Methods inherited from interface com.google.gerrit.entities.GroupDescription.Basic
getEmailAddress, getGroupUUID, getName, getUrl
-
-
-
-
Method Detail
-
getId
AccountGroup.Id getId()
-
getDescription
String getDescription()
-
getOwnerGroupUUID
AccountGroup.UUID getOwnerGroupUUID()
-
isVisibleToAll
boolean isVisibleToAll()
-
getCreatedOn
Instant getCreatedOn()
-
getMembers
Set<Account.Id> getMembers()
-
getSubgroups
Set<AccountGroup.UUID> getSubgroups()
-
-