Package com.i2group.disco.audit
Interface IGroupInfo
- All Known Subinterfaces:
IGroupAddAuditEvent
,IGroupRemoveAuditEvent
,IGroupRestoreAuditEvent
,IGroupUpdateAuditEvent
public interface IGroupInfo
Information about a group that is involved in an operation that is under audit.
- Since:
- 13.3
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
The provisioning source of a group. -
Method Summary
Modifier and TypeMethodDescriptionGets aString
that contains a description of the group that thisIGroupInfo
represents.Gets aString
that contains the display name of the group that thisIGroupInfo
represents.getId()
Gets aString
that contains the unique identifier of the group that thisIGroupInfo
represents.Gets a list ofString
s that contains the identifiers of the members of the group that thisIGroupInfo
represents.Gets theProvisioningType
of the operation that provisioned the group that thisIGroupInfo
represents.Gets the provisioningIGroupInfo.Source
of the group that thisIGroupInfo
represents.boolean
Indicates whether the group that thisIGroupInfo
represents is available for sharing.boolean
Indicates whether the group that thisIGroupInfo
represents is visible to all users.
-
Method Details
-
getSource
IGroupInfo.Source getSource()Gets the provisioningIGroupInfo.Source
of the group that thisIGroupInfo
represents.- Returns:
- See above.
-
getProvisioningType
ProvisioningType getProvisioningType()Gets theProvisioningType
of the operation that provisioned the group that thisIGroupInfo
represents.- Returns:
- See above.
-
getId
String getId()Gets aString
that contains the unique identifier of the group that thisIGroupInfo
represents.- Returns:
- See above.
-
getDisplayName
String getDisplayName()Gets aString
that contains the display name of the group that thisIGroupInfo
represents.- Returns:
- See above.
-
getDescription
String getDescription()Gets aString
that contains a description of the group that thisIGroupInfo
represents.- Returns:
- See above.
-
isAvailableForSharing
boolean isAvailableForSharing()Indicates whether the group that thisIGroupInfo
represents is available for sharing.- Returns:
true
if the group is available for sharing;false
otherwise.
-
isVisibleToAll
boolean isVisibleToAll()Indicates whether the group that thisIGroupInfo
represents is visible to all users.- Returns:
true
if the group is visible to all users;false
otherwise.
-
getMemberIds
Gets a list ofString
s that contains the identifiers of the members of the group that thisIGroupInfo
represents.- Returns:
- See above.
-