Package de.xima.fc.dao.interfaces
Interface IMandantFrontendServerDao
-
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<MandantFrontendServer,Long,IEntityContext>
,IGenericDao<MandantFrontendServer>
,IMandantDependentBaseDao<MandantFrontendServer>
- All Known Implementing Classes:
MandantFrontendServerDao
public interface IMandantFrontendServerDao extends IMandantDependentBaseDao<MandantFrontendServer>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description List<MandantFrontendServer>
getAllByClient(IEntityContext ec, Mandant client)
Gets allMandantFrontendServer
s of the givenclient
.MandantFrontendServer
getByMandantAndFs(IEntityContext ec, Mandant mandant, FrontendServer fs)
List<MandantFrontendServer>
getByProject(IEntityContext ec, Projekt project)
Gets theMandantFrontendServer
s of the givenProjekt
MandantFrontendServer
getBySource(IEntityContext ec, FrontendServer fs, Mandant mandant)
Deprecated.Boolean
isFSUsedByMandant(IEntityContext ec, MandantFrontendServer mfs)
-
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
-
getBySource
@Deprecated MandantFrontendServer getBySource(IEntityContext ec, FrontendServer fs, Mandant mandant)
Deprecated.
-
getByMandantAndFs
MandantFrontendServer getByMandantAndFs(IEntityContext ec, Mandant mandant, FrontendServer fs)
-
getByProject
List<MandantFrontendServer> getByProject(IEntityContext ec, Projekt project)
Gets theMandantFrontendServer
s of the givenProjekt
- Parameters:
ec
-IEntityContext
to do this query forproject
-Projekt
of which to get theMandantFrontendServer
s- Returns:
List
ofMandantFrontendServer
- Since:
- 6.0.0
-
isFSUsedByMandant
Boolean isFSUsedByMandant(IEntityContext ec, MandantFrontendServer mfs)
-
getAllByClient
List<MandantFrontendServer> getAllByClient(IEntityContext ec, Mandant client)
Gets allMandantFrontendServer
s of the givenclient
.- Parameters:
ec
-IEntityContext
for database transactions.client
-Mandant
of which to get theMandantFrontendServer
s- Returns:
List
ofMandantFrontendServer
ordered byINameProviding.ATTR_NAME
- Since:
- 8.2.0
-
-