Interface PlatformGroupEntity

All Superinterfaces:
org.flowable.common.engine.impl.persistence.entity.Entity, org.flowable.idm.api.Group, org.flowable.common.engine.impl.db.HasRevision, PlatformGroup, Serializable
All Known Implementing Classes:
PlatformGroupEntityImpl

public interface PlatformGroupEntity extends PlatformGroup, org.flowable.common.engine.impl.persistence.entity.Entity, org.flowable.common.engine.impl.db.HasRevision
Author:
Joram Barrez
  • Method Details

    • getName

      String getName()
      Specified by:
      getName in interface org.flowable.idm.api.Group
    • setName

      void setName(String name)
      Specified by:
      setName in interface org.flowable.idm.api.Group
    • getType

      String getType()
      Specified by:
      getType in interface org.flowable.idm.api.Group
    • setType

      void setType(String type)
      Specified by:
      setType in interface org.flowable.idm.api.Group
    • setKey

      void setKey(String key)
    • setTenantId

      void setTenantId(String tenantId)
    • setIdentityInfo

      void setIdentityInfo(String name, Object value)
    • setIdentityInfo

      void setIdentityInfo(List<PlatformIdentityInfo> identityInfo)
    • findIdentityInfo

      PlatformIdentityInfoEntity findIdentityInfo(String name)
    • isIdentityInfoInitialized

      boolean isIdentityInfoInitialized()
    • findOrElseGet

      <T> T findOrElseGet(String name, Class<T> clazz, Supplier<T> defaultValueSupplier)
      Specified by:
      findOrElseGet in interface PlatformGroup
    • findOrElse

      <T> T findOrElse(String name, Class<T> clazz, T defaultValue)
      Specified by:
      findOrElse in interface PlatformGroup