Class PropertyEntityManagerImpl
java.lang.Object
org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager<EntityImpl,DM>
org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager<WorkObjectEngineConfiguration,PropertyEntity,PropertyDataManager>
com.flowable.workobject.engine.impl.persistence.entity.PropertyEntityManagerImpl
- All Implemented Interfaces:
PropertyEntityManager
,org.flowable.common.engine.impl.persistence.entity.EntityManager<PropertyEntity>
public class PropertyEntityManagerImpl extends org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager<WorkObjectEngineConfiguration,PropertyEntity,PropertyDataManager> implements PropertyEntityManager
- Author:
- martin.grofcik
-
Field Summary
-
Constructor Summary
Constructors Constructor Description PropertyEntityManagerImpl(WorkObjectEngineConfiguration workObjectEngineConfiguration, PropertyDataManager propertyDataManager)
-
Method Summary
Modifier and Type Method Description PropertyEntity
create(java.lang.String name, java.lang.String value)
java.util.List<PropertyEntity>
findPropertiesBySourceId(java.lang.String sourceId)
java.util.List<PropertyEntity>
findPropertiesBySourceIdAndNames(java.lang.String sourceId, java.util.Collection<java.lang.String> names)
java.util.List<PropertyEntity>
findPropertiesBySourceIds(java.util.Set<java.lang.String> sourceIds)
PropertyEntity
findPropertyBySourceIdAndName(java.lang.String sourceId, java.lang.String name)
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEngineEntityManager
getClock, getCommandExecutor, getEngineConfiguration, getEventDispatcher
Methods inherited from class org.flowable.common.engine.impl.persistence.entity.AbstractEntityManager
create, createEntityEvent, delete, delete, delete, findById, fireEntityDeletedEvent, fireEntityInsertedEvent, fireEntityUpdatedEvent, getDataManager, insert, insert, setDataManager, update, update
-
Constructor Details
-
PropertyEntityManagerImpl
public PropertyEntityManagerImpl(WorkObjectEngineConfiguration workObjectEngineConfiguration, PropertyDataManager propertyDataManager)
-
-
Method Details
-
create
- Specified by:
create
in interfacePropertyEntityManager
-
findPropertiesBySourceId
- Specified by:
findPropertiesBySourceId
in interfacePropertyEntityManager
-
findPropertiesBySourceIds
public java.util.List<PropertyEntity> findPropertiesBySourceIds(java.util.Set<java.lang.String> sourceIds)- Specified by:
findPropertiesBySourceIds
in interfacePropertyEntityManager
-
findPropertyBySourceIdAndName
public PropertyEntity findPropertyBySourceIdAndName(java.lang.String sourceId, java.lang.String name)- Specified by:
findPropertyBySourceIdAndName
in interfacePropertyEntityManager
-
findPropertiesBySourceIdAndNames
public java.util.List<PropertyEntity> findPropertiesBySourceIdAndNames(java.lang.String sourceId, java.util.Collection<java.lang.String> names)- Specified by:
findPropertiesBySourceIdAndNames
in interfacePropertyEntityManager
-