Class FormVersionDao
java.lang.Object
de.xima.cmn.dao.AbstractDao<FormVersion, Long, IEntityContext>
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IAbstractDao<FormVersion, Long, IEntityContext>, IFormVersionDao, IGenericDao<FormVersion>, IProjektDependentBaseDao<FormVersion>
-
Field Summary
Fields inherited from class de.xima.cmn.dao.AbstractDao
entityClass, LOG -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintcalcNewVersionNumber(IEntityContext ec, Projekt projekt) copy(IEntityContext ec, FormVersion source, Projekt projekt) createDefaultFormVersion(IEntityContext ec, Projekt project, IUser user) Returns a new default form version on the basis of a given project.getBy(IEntityContext ec, Projekt projekt, int versionNumber) getByFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme) Finds all form versions that are associated with the given form theme.getByFormThemePlugin(IEntityContext ec, Mandant client, String formThemePluginKey) Finds all form versions that are associated with any theme from the given form theme plugin.getByProjekt(IEntityContext ec, Projekt projekt) getByUUID(IEntityContext ec, Projekt project, String uuid) Returns the form version for the given UUID string and projectgetByUUID(IEntityContext ec, Projekt project, UUID uuid) Returns the form version for the given UUID and projectgetByVersionNumber(IEntityContext ec, Integer formVersionNumber, Long projectId) Gets the form version with the given version number.getEntityRefs(IEntityContext ec, FormVersion formversion) Returns a set of entities that reference the given entity and depend on it.com.alibaba.fastjson.JSONObjectgetFormJson(IEntityContext ec, FormVersion formVersion) Returns the form JSON of the given form version.protected IFCDaoActionHook<FormVersion> protected IFCDaoActionHook<FormVersion> Methods inherited from class GenericDao
readMethods inherited from class de.xima.cmn.dao.AbstractDao
all, bulkDelete, bulkUpdate, cb, checkLockingVersion, cq, create, create, delete, delete, deleteAll, executePagedDaoAction, getAttributes, getAttributes, getSingleAttributes, getSingleAttributes, getTransactionHandler, notifyListener, notifyListener, read, registerListener, registerListener, registerListener, resultTotalCount, setTransactionHandler, singleElement, unregisterListener, unregisterListener, unregisterListener, update, updateMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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, read
-
Constructor Details
-
FormVersionDao
public FormVersionDao()
-
-
Method Details
-
getEntityRefs
public Set<de.xima.cmn.dao.interfaces.IEntity<Long>> getEntityRefs(IEntityContext ec, FormVersion formversion) Description copied from interface:IGenericDaoReturns a set of entities that reference the given entity and depend on it. An entity can usually not be deleted if it is still being referenced by and depended on by other entities.- Specified by:
getEntityRefsin interfaceIGenericDao<FormVersion>- Overrides:
getEntityRefsin classGenericDao<FormVersion>- Parameters:
ec- entity context for database transactions.formversion- to get references for.- Returns:
- a set of entities that reference the given entity and depend on it.
-
getByProjekt
- Specified by:
getByProjektin interfaceIFormVersionDao
-
getByUUID
Description copied from interface:IFormVersionDaoReturns the form version for the given UUID string and project- Specified by:
getByUUIDin interfaceIFormVersionDao- Parameters:
ec-IEntityContextto useproject-Projektcontext in which to look for form versionuuid-StringUUID string of the form version- Returns:
FormVersionfor the given UUID and project
-
getByUUID
Description copied from interface:IFormVersionDaoReturns the form version for the given UUID and project- Specified by:
getByUUIDin interfaceIFormVersionDao- Parameters:
ec-IEntityContextto useproject-Projektcontext in which to look for form versionuuid-UUIDUUID of the form version- Returns:
FormVersionfor the given UUID and project
-
getBy
- Specified by:
getByin interfaceIFormVersionDao
-
calcNewVersionNumber
- Specified by:
calcNewVersionNumberin interfaceIFormVersionDao
-
copy
public FormVersion copy(IEntityContext ec, FormVersion source, Projekt projekt) throws de.xima.cmn.dao.exceptions.CreateException - Specified by:
copyin interfaceIFormVersionDao- Throws:
de.xima.cmn.dao.exceptions.CreateException
-
getPreActionHook
- Overrides:
getPreActionHookin classGenericDao<FormVersion>
-
getPostActionHook
- Overrides:
getPostActionHookin classGenericDao<FormVersion>
-
createDefaultFormVersion
Description copied from interface:IFormVersionDaoReturns a new default form version on the basis of a given project.- Specified by:
createDefaultFormVersionin interfaceIFormVersionDao- Parameters:
ec-IEntityContextto useproject-Projektcontext in which to create the form versionuser-IUseruser for form file data informations- Returns:
- default
FormVersionfor the given project
-
getByVersionNumber
Description copied from interface:IFormVersionDaoGets the form version with the given version number. Returns the project's default version if the version number is null or no such version exists.- Specified by:
getByVersionNumberin interfaceIFormVersionDao- Parameters:
ec- Entity context for accessing the databaseformVersionNumber- Version number of the form version to get.projectId- ID of the project containing the form version.- Returns:
- Form version with the given version number
-
getByFormThemePlugin
public List<FormVersion> getByFormThemePlugin(IEntityContext ec, Mandant client, String formThemePluginKey) Description copied from interface:IFormVersionDaoFinds all form versions that are associated with any theme from the given form theme plugin.- Specified by:
getByFormThemePluginin interfaceIFormVersionDao- Parameters:
ec- Entity context for accessing the database.client- The client to which to limit the search. May be null to search all clients.formThemePluginKey- The key of the form theme plugin.- Returns:
- All form versions that are associated with a theme from the given form theme plugin.
-
getByFormTheme
public List<FormVersion> getByFormTheme(IEntityContext ec, Mandant client, FormThemeReference formTheme) Description copied from interface:IFormVersionDaoFinds all form versions that are associated with the given form theme.- Specified by:
getByFormThemein interfaceIFormVersionDao- Parameters:
ec- Entity context for accessing the database.client- The client to which to limit the search. May be null to search all clients.formTheme- The form theme reference to search for.- Returns:
- All form versions that are associated with the given form theme.
-
getFormJson
Description copied from interface:IFormVersionDaoReturns the form JSON of the given form version.- Specified by:
getFormJsonin interfaceIFormVersionDao- Parameters:
ec- Entity context for accessing the database.formVersion- Form version for which to get the form JSON.- Returns:
- Form JSON of the given form version.
-