Interface IBenutzerGruppeHandler
-
- All Superinterfaces:
IAPIHandler
,IGenericHandler
,Serializable
- All Known Implementing Classes:
BenutzerGruppeHandler
public interface IBenutzerGruppeHandler extends IGenericHandler
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<BenutzerGruppe>
getBenutzerGruppenUsageRightByStatus(UserContext uc, Long stateId)
List<BenutzerGruppe>
getByBenutzer(UserContext uc, Benutzer ben)
List<BenutzerGruppe>
getByProjekt(UserContext uc, Long projektId)
BenutzerGruppe
getByUUID(UserContext uc, Mandant client, String uuid)
Returns the user group with the given UUID stringBenutzerGruppe
getByUUID(UserContext uc, Mandant client, UUID uuid)
Returns the user group with the given UUIDList<BenutzerGruppe>
getEditorgruppenByProjekt(UserContext uc, Long projektId)
-
Methods inherited from interface de.xima.fc.com.interfaces.IAPIHandler
getName
-
Methods inherited from interface de.xima.fc.handler.interfaces.entity.IGenericHandler
create, create, delete, delete, deleteBy, deleteById, deleteById, getAll, getAllBy, getAttributes, getAttributes, getBy, getById, getById, getById, getSingleAttributes, getSingleAttributes, resultTotalCount, update, update
-
-
-
-
Method Detail
-
getByProjekt
List<BenutzerGruppe> getByProjekt(UserContext uc, Long projektId)
-
getEditorgruppenByProjekt
List<BenutzerGruppe> getEditorgruppenByProjekt(UserContext uc, Long projektId)
-
getBenutzerGruppenUsageRightByStatus
List<BenutzerGruppe> getBenutzerGruppenUsageRightByStatus(UserContext uc, Long stateId)
-
getByBenutzer
List<BenutzerGruppe> getByBenutzer(UserContext uc, Benutzer ben)
-
getByUUID
BenutzerGruppe getByUUID(UserContext uc, Mandant client, String uuid)
Returns the user group with the given UUID string- Parameters:
uc
-UserContext
to useclient
-Mandant
context in which to look for user groupuuid
-String
UUID string of the user group- Returns:
BenutzerGruppe
for the given UUID and client- Since:
- 6.x.x
-
getByUUID
BenutzerGruppe getByUUID(UserContext uc, Mandant client, UUID uuid)
Returns the user group with the given UUID- Parameters:
uc
-UserContext
to useclient
-Mandant
context in which to look for user groupuuid
-UUID
UUID of the user group- Returns:
BenutzerGruppe
for the given UUID and client- Since:
- 6.x.x
-
-