Interface ITextbausteinDao
- All Superinterfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<Textbaustein, Long, IEntityContext>, IGenericDao<Textbaustein>, IMandantDependentBaseDao<Textbaustein>
- All Known Implementing Classes:
TextbausteinDao
-
Method Summary
Modifier and TypeMethodDescriptionfindAllKeywords(IEntityContext ec, Mandant mandant, ETextbausteinKategorie kategorie) Collects all currently existing keywords for the provided client and template type.findUniqueName(IEntityContext ec, Mandant client, String candidate) Returns a name that is not taken by anotherTextbausteinin the given client.findUniqueName(IEntityContext ec, Mandant client, String candidate, Textbaustein exclude) Returns a name that is not taken by anotherTextbausteinin the given client other than the excluded template.getAll(IEntityContext ec, Mandant client) getAllByKat(IEntityContext ec, Mandant client, ETextbausteinKategorie category) Returns the templates matching the providedMandantandETextbausteinKategorie.getAllByProject(IEntityContext ec, Projekt project) Returns all templates that are being used by the given projectgetByKatAndName(IEntityContext ec, Mandant client, ETextbausteinKategorie category, String name) getByMsgCode(IEntityContext ec, Mandant client, ETextbausteinMsgCode messageCode, ETextbausteinKategorie category) getByMsgCode(IEntityContext ec, Mandant client, String messageCode) getByMsgCode(IEntityContext ec, Mandant client, String messageCode, ETextbausteinKategorie category) getByName(IEntityContext ec, Mandant client, String name) getByUUID(IEntityContext ec, Mandant client, String uuid) Returns the template with the given UUID stringgetByUUID(IEntityContext ec, Mandant client, UUID uuid) Returns the template with the given UUIDgetTextbausteinByMsgCode(IEntityContext ec, Mandant client, ETextbausteinMsgCode messageCode) booleanisNameExisiting(IEntityContext ec, Mandant client, String name) Checks whether the given template name exists within the given clientMethods 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, updateMethods inherited from interface IGenericDao
count, createOrUpdate, findAll, findSingle, getEntityRefs, read
-
Method Details
-
getByMsgCode
-
getByMsgCode
Textbaustein getByMsgCode(IEntityContext ec, Mandant client, String messageCode, ETextbausteinKategorie category) -
getByMsgCode
Textbaustein getByMsgCode(IEntityContext ec, Mandant client, ETextbausteinMsgCode messageCode, ETextbausteinKategorie category) -
getTextbausteinByMsgCode
Textbaustein getTextbausteinByMsgCode(IEntityContext ec, Mandant client, ETextbausteinMsgCode messageCode) -
getAll
-
getByName
-
getAllByKat
Returns the templates matching the providedMandantandETextbausteinKategorie.- Parameters:
ec-IEntityContextto useclient-Mandantcontext in which to look for templatecategory-ETextbausteinKategorieto filter the templates by- Returns:
- the resulting list of templates, ordered by template name (ASC)
-
getByKatAndName
Textbaustein getByKatAndName(IEntityContext ec, Mandant client, ETextbausteinKategorie category, String name) -
getByUUID
Returns the template with the given UUID string- Parameters:
ec-IEntityContextto useclient-Mandantcontext in which to look for templateuuid-StringUUID of the template- Returns:
Textbausteinfor the given UUID and client- Since:
- 6.1.0
-
getByUUID
Returns the template with the given UUID- Parameters:
ec-IEntityContextto useclient-Mandantcontext in which to look for templateuuid-UUIDUUID of the template- Returns:
Textbausteinfor the given UUID and client- Since:
- 6.1.0
-
getAllByProject
Returns all templates that are being used by the given project- Parameters:
ec-IEntityContextto be usedproject-Projektproject to search for templates- Returns:
ListofTextbausteins that are being used by the project- Since:
- 6.1.0
-
findUniqueName
Returns a name that is not taken by anotherTextbausteinin the given client. An index will be added to the candidate if necessary.- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which a unique template name should be generatedcandidate- Candidate name for the template. This name is used when it does not exist, otherwise a unique name is derived based on this name.- Returns:
- unique template name in the context of the given client
- Since:
- 6.4.0
-
findUniqueName
Returns a name that is not taken by anotherTextbausteinin the given client other than the excluded template. An index will be added to the candidate if necessary.- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which a unique template name should be generatedcandidate- Candidate name for the template. This name is used when it does not exist, otherwise a unique name is derived based on this name.exclude-Textbausteintemplate to be excluded from search- Returns:
- unique template name in the context of the given client
- Since:
- 6.6.0
-
isNameExisiting
Checks whether the given template name exists within the given client- Parameters:
ec-IEntityContextto be usedclient-Mandantfor which to check uniquenessname-Stringtemplate name to check- Returns:
- Whether the given name is unique
- Since:
- 6.4.0
-
findAllKeywords
Collects all currently existing keywords for the provided client and template type.- Parameters:
ec-IEntityContextto be usedmandant-Mandantto filter the templates bykategorie-ETextbausteinKategorieto filter the templates by- Returns:
- the resulting (unordered) set of keywords
-