Interface IRolleHandler
-
- All Superinterfaces:
IAPIHandler
,IGenericHandler
,Serializable
- All Known Implementing Classes:
RolleHandler
public interface IRolleHandler extends IGenericHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rolle
addModulToRolle(UserContext uc, Rolle rolle, Modul newModul)
Rolle
getAdminRolle(UserContext uc, Mandant mandant)
Rolle
getByUUID(UserContext uc, Mandant client, String uuid)
Returns the role with the given UUIDRolle
getByUUID(UserContext uc, Mandant client, UUID uuid)
Returns the role with the given UUIDList<Rolle>
getRollenByModul(UserContext uc, Modul modul)
-
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
-
getRollenByModul
List<Rolle> getRollenByModul(UserContext uc, Modul modul)
-
getAdminRolle
Rolle getAdminRolle(UserContext uc, Mandant mandant)
-
getByUUID
Rolle getByUUID(UserContext uc, Mandant client, String uuid)
Returns the role with the given UUID- Parameters:
uc
-UserContext
to useclient
-Mandant
context in which to look for roleuuid
-String
UUID of the role- Returns:
Rolle
for the given UUID and client- Since:
- 6.x.x
-
getByUUID
Rolle getByUUID(UserContext uc, Mandant client, UUID uuid)
Returns the role with the given UUID- Parameters:
uc
-UserContext
to useclient
-Mandant
context in which to look for roleuuid
-UUID
UUID of the role- Returns:
Rolle
for the given UUID and client- Since:
- 6.x.x
-
addModulToRolle
Rolle addModulToRolle(UserContext uc, Rolle rolle, Modul newModul)
-
-