Interface CrowdDeletedEntity
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
- All Known Implementing Classes:
CrowdDeletedEntityImpl
public interface CrowdDeletedEntity extends BambooObject
Information about an entity (user or group) deleted in Embedded Crowd. Used to perform delayed cleanup of Bamboo stored data.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CrowdDeletedEntity.EntityType
Type of Embedded Crowd entity.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull Date
getDeletionDate()
Date at which the deletion of the entity was registered.@NotNull String
getEntityName()
Name of the entity.@NotNull CrowdDeletedEntity.EntityType
getEntityType()
Type of the entity.void
setDeletionDate(@NotNull Date deletionDate)
void
setEntityName(@NotNull String entityName)
void
setEntityType(@NotNull CrowdDeletedEntity.EntityType entityType)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
-
-
-
Method Detail
-
getEntityType
@NotNull @NotNull CrowdDeletedEntity.EntityType getEntityType()
Type of the entity.
-
setEntityType
void setEntityType(@NotNull @NotNull CrowdDeletedEntity.EntityType entityType)
-
getEntityName
@NotNull @NotNull String getEntityName()
Name of the entity.- See Also:
Entity.getName()
,Entity.getName()
-
setEntityName
void setEntityName(@NotNull @NotNull String entityName)
-
getDeletionDate
@NotNull @NotNull Date getDeletionDate()
Date at which the deletion of the entity was registered.
-
setDeletionDate
void setDeletionDate(@NotNull @NotNull Date deletionDate)
-
-