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 allMandantFrontendServers of the givenclient.MandantFrontendServergetByMandantAndFs(IEntityContext ec, Mandant mandant, FrontendServer fs)List<MandantFrontendServer>getByProject(IEntityContext ec, Projekt project)Gets theMandantFrontendServers of the givenProjektMandantFrontendServergetBySource(IEntityContext ec, FrontendServer fs, Mandant mandant)Deprecated.BooleanisFSUsedByMandant(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 theMandantFrontendServers of the givenProjekt- Parameters:
ec-IEntityContextto do this query forproject-Projektof which to get theMandantFrontendServers- Returns:
ListofMandantFrontendServer- Since:
- 6.0.0
-
isFSUsedByMandant
Boolean isFSUsedByMandant(IEntityContext ec, MandantFrontendServer mfs)
-
getAllByClient
List<MandantFrontendServer> getAllByClient(IEntityContext ec, Mandant client)
Gets allMandantFrontendServers of the givenclient.- Parameters:
ec-IEntityContextfor database transactions.client-Mandantof which to get theMandantFrontendServers- Returns:
ListofMandantFrontendServerordered byINameProviding.ATTR_NAME- Since:
- 8.2.0
-
-