Package de.xima.fc.dao.interfaces
Interface IRolleDao
- 
- All Superinterfaces:
 de.xima.cmn.dao.interfaces.IAbstractDao<Rolle,Long,IEntityContext>,IGenericDao<Rolle>,IMandantDependentBaseDao<Rolle>
- All Known Implementing Classes:
 RolleDao
public interface IRolleDao extends IMandantDependentBaseDao<Rolle>
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RollegetAdminRolle(IEntityContext ec, Mandant mandant)RollegetByUUID(IEntityContext ec, Mandant client, String uuid)Returns the role with the given UUIDRollegetByUUID(IEntityContext ec, Mandant client, UUID uuid)Returns the role with the given UUIDList<Rolle>getRollenByModul(IEntityContext ec, Modul modul)Deprecated.- 
Methods inherited from interface de.xima.cmn.dao.interfaces.IAbstractDao
all, bulkDelete, bulkUpdate, checkLockingVersion, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, update 
- 
Methods inherited from interface de.xima.fc.dao.interfaces.IGenericDao
count, findAll, findSingle, getEntityRefs, read 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getRollenByModul
@Deprecated List<Rolle> getRollenByModul(IEntityContext ec, Modul modul)
Deprecated. 
- 
getAdminRolle
Rolle getAdminRolle(IEntityContext ec, Mandant mandant)
 
- 
getByUUID
Rolle getByUUID(IEntityContext ec, Mandant client, String uuid)
Returns the role with the given UUID- Parameters:
 ec-IEntityContextto useclient-Mandantcontext in which to look for roleuuid-StringUUID of the role- Returns:
 Rollefor the given UUID and client- Since:
 - 6.1.0
 
 
- 
getByUUID
Rolle getByUUID(IEntityContext ec, Mandant client, UUID uuid)
Returns the role with the given UUID- Parameters:
 ec-IEntityContextto useclient-Mandantcontext in which to look for roleuuid-UUIDUUID of the role- Returns:
 Rollefor the given UUID and client- Since:
 - 6.1.0
 
 
 - 
 
 -