public class WrappingOfBizDelegator extends Object implements OfBizDelegator
ISSUE_LINK, ISSUE_LINK_TYPE, PROJECT_COMPONENT, VERSION
Constructor and Description |
---|
WrappingOfBizDelegator(org.ofbiz.core.entity.DelegatorInterface delegatorInterface) |
Modifier and Type | Method and Description |
---|---|
int |
bulkCopyColumnValuesByAnd(String entityName,
Map updateColumns,
Map criteria)
This can be used to perform an update on the entityName of all the rows
identified by AND criteria of the fields specified by the criteria map.
|
int |
bulkUpdateByAnd(String entityName,
Map<String,?> updateValues,
Map<String,?> criteria)
This can be used to perform an update on the entityName of all the rows
identified by AND criteria of the fields specified by the criteria map.
|
int |
bulkUpdateByPrimaryKey(String entityName,
Map<String,?> updateValues,
List<Long> keys)
This can be used to perform an update on the entityName of all the rows
identified by the keys with the values stored in the updateValues.
|
org.ofbiz.core.entity.GenericValue |
createValue(String entityName,
Map<String,Object> fields)
Creates a new GenericValue, and persists it.
|
void |
createValueWithoutId(String entityName,
Map<String,Object> fields)
Creates a new GenericValue, and persists it without trying to automatically populate the ID column.
|
List<org.ofbiz.core.entity.GenericValue> |
findAll(String s) |
List<org.ofbiz.core.entity.GenericValue> |
findAll(String s,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
findByAnd(String entityName,
List<org.ofbiz.core.entity.EntityCondition> expressions) |
List<org.ofbiz.core.entity.GenericValue> |
findByAnd(String entityName,
Map<String,?> fields)
Finds GenericValue records by all of the specified fields (ie: combined using AND).
|
List<org.ofbiz.core.entity.GenericValue> |
findByAnd(String entityName,
Map<String,?> fields,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect)
Finds GenericValues by the conditions specified in the EntityCondition object with no specified order.
|
List<org.ofbiz.core.entity.GenericValue> |
findByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy)
Finds GenericValues by the conditions specified in the EntityCondition object.
|
List<org.ofbiz.core.entity.GenericValue> |
findByField(String entityName,
String fieldName,
Object fieldValue)
Finds GenericValue records by the specified field value.
|
List<org.ofbiz.core.entity.GenericValue> |
findByField(String entityName,
String fieldName,
Object fieldValue,
String orderBy)
Finds GenericValue records by the specified field value.
|
org.ofbiz.core.entity.GenericValue |
findById(String entityName,
Long id)
Find a Generic Entity by its numeric ID.
|
List<org.ofbiz.core.entity.GenericValue> |
findByLike(String entityName,
Map<String,?> map) |
List<org.ofbiz.core.entity.GenericValue> |
findByLike(String entityName,
Map<String,?> map,
List<String> orderBy) |
List<org.ofbiz.core.entity.GenericValue> |
findByOr(String entityName,
List<? extends org.ofbiz.core.entity.EntityCondition> expressions,
List<String> orderBy) |
org.ofbiz.core.entity.GenericValue |
findByPrimaryKey(String entityName,
Long id)
Find a Generic Entity by its single numeric Primary Key.
|
org.ofbiz.core.entity.GenericValue |
findByPrimaryKey(String entityName,
Map<String,?> fields)
Find a Generic Entity by its Primary Key.
|
OfBizListIterator |
findListIteratorByCondition(String entityType,
org.ofbiz.core.entity.EntityCondition condition)
Returns a new OfBizListIterator.
|
OfBizListIterator |
findListIteratorByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition whereEntityCondition,
org.ofbiz.core.entity.EntityCondition havingEntityCondition,
Collection<String> fieldsToSelect,
List<String> orderBy,
org.ofbiz.core.entity.EntityFindOptions entityFindOptions)
Returns a new OfBizListIterator.
|
long |
getCount(String entityName)
Runs a
COUNT * query over the given entity. |
long |
getCountByAnd(String entityName,
org.ofbiz.core.entity.EntityCondition condition)
Runs a
COUNT * query over the given entity with some WHERE conditions. |
long |
getCountByAnd(String entityName,
Map<String,?> fields)
Runs a
COUNT * query over the given entity with some WHERE conditions. |
org.ofbiz.core.entity.DelegatorInterface |
getDelegatorInterface()
Returns the underlying raw Entity Engine DelegatorInterface.
|
org.ofbiz.core.entity.model.ModelReader |
getModelReader()
Returns a model reader that can be used to retrieve all the different entitynames configured in the
entitymodel.
|
List<org.ofbiz.core.entity.GenericValue> |
getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv) |
List<org.ofbiz.core.entity.GenericValue> |
getRelated(String relationName,
org.ofbiz.core.entity.GenericValue gv,
List<String> orderBy) |
org.ofbiz.core.entity.GenericValue |
makeValue(String entityName)
Creates an Entity in the form of a GenericValue without persisting it.
|
org.ofbiz.core.entity.GenericValue |
makeValue(String entityName,
Map<String,Object> fields)
Creates an Entity in the form of a GenericValue without persisting it.
|
void |
refreshSequencer()
Refreshes the sequencer that is used to retrieve unique IDs in the database.
|
void |
removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
int |
removeByAnd(String s,
Map<String,?> map) |
int |
removeByCondition(String entityName,
org.ofbiz.core.entity.EntityCondition condition) |
int |
removeById(String entityName,
Long id)
Remove the given entity from the DB.
|
int |
removeByOr(String entityName,
String entityId,
List<Long> ids)
This can be used to remove rows for a given entity based on entityName
and where entityId
|
boolean |
removeRelated(String relationName,
org.ofbiz.core.entity.GenericValue schemeGv)
Remove all the entities related to the passed generic value via the passed relationship name.
|
int |
removeValue(org.ofbiz.core.entity.GenericValue value) |
void |
store(org.ofbiz.core.entity.GenericValue gv) |
void |
storeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) |
List<org.ofbiz.core.entity.GenericValue> |
transform(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
List<String> orderBy,
String lockField,
org.ofbiz.core.entity.Transformation transformation)
Applies the given transformation to any entities matching the given condition.
|
org.ofbiz.core.entity.GenericValue |
transformOne(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
String lockField,
org.ofbiz.core.entity.Transformation transformation)
Applies the given transformation to the entity matching the given condition.
|
public WrappingOfBizDelegator(org.ofbiz.core.entity.DelegatorInterface delegatorInterface)
public List<org.ofbiz.core.entity.GenericValue> findByField(String entityName, String fieldName, Object fieldValue)
OfBizDelegator
findByField
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML filefieldName
- The field to do filtering by.fieldValue
- The desired value for the filtering field.public List<org.ofbiz.core.entity.GenericValue> findByField(String entityName, String fieldName, Object fieldValue, String orderBy)
OfBizDelegator
findByField
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML filefieldName
- The field to do filtering by.fieldValue
- The desired value for the filtering field.orderBy
- Single field to order by.public List<org.ofbiz.core.entity.GenericValue> findByAnd(String entityName, Map<String,?> fields) throws DataAccessException
OfBizDelegator
findByAnd
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML filefields
- The fields of the named entity to query by with their corresponding valuesDataAccessException
- If an error occurs in the persistence layer.public List<org.ofbiz.core.entity.GenericValue> findByAnd(String entityName, Map<String,?> fields, List<String> orderBy) throws DataAccessException
findByAnd
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findByAnd(String entityName, List<org.ofbiz.core.entity.EntityCondition> expressions) throws DataAccessException
findByAnd
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findByOr(String entityName, List<? extends org.ofbiz.core.entity.EntityCondition> expressions, List<String> orderBy) throws DataAccessException
findByOr
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findByLike(String entityName, Map<String,?> map) throws DataAccessException
findByLike
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findByLike(String entityName, Map<String,?> map, List<String> orderBy) throws DataAccessException
findByLike
in interface OfBizDelegator
DataAccessException
public void removeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) throws DataAccessException
removeAll
in interface OfBizDelegator
DataAccessException
public int removeByAnd(String s, Map<String,?> map) throws DataAccessException
removeByAnd
in interface OfBizDelegator
DataAccessException
public int removeByCondition(String entityName, org.ofbiz.core.entity.EntityCondition condition) throws DataAccessException
removeByCondition
in interface OfBizDelegator
DataAccessException
public int removeById(String entityName, Long id)
OfBizDelegator
removeById
in interface OfBizDelegator
entityName
- the entity type (ie TABLE)id
- the id of the row to delete.public int removeValue(org.ofbiz.core.entity.GenericValue value) throws DataAccessException
removeValue
in interface OfBizDelegator
DataAccessException
public void storeAll(List<org.ofbiz.core.entity.GenericValue> genericValues) throws DataAccessException
storeAll
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findAll(String s) throws DataAccessException
findAll
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> findAll(String s, List<String> orderBy) throws DataAccessException
findAll
in interface OfBizDelegator
DataAccessException
public void store(org.ofbiz.core.entity.GenericValue gv) throws DataAccessException
store
in interface OfBizDelegator
DataAccessException
public org.ofbiz.core.entity.GenericValue createValue(String entityName, Map<String,Object> fields) throws DataAccessException
OfBizDelegator
If there is no "id" in the field values, one is created using the entity sequence.
createValue
in interface OfBizDelegator
entityName
- the entity name.fields
- field valuesDataAccessException
- if an error occurs in the Database layerOfBizDelegator.createValueWithoutId(String, java.util.Map)
,
OfBizDelegator.makeValue(String)
public void createValueWithoutId(String entityName, Map<String,Object> fields)
OfBizDelegator
Use this for entities that don't have a numeric ID column.
createValueWithoutId
in interface OfBizDelegator
entityName
- the entity name.fields
- field valuesOfBizDelegator.createValue(String, java.util.Map)
,
OfBizDelegator.makeValue(String)
public org.ofbiz.core.entity.GenericValue makeValue(String entityName)
OfBizDelegator
makeValue
in interface OfBizDelegator
entityName
- the entity name.OfBizDelegator.makeValue(String, java.util.Map)
,
OfBizDelegator.createValue(String, java.util.Map)
public org.ofbiz.core.entity.GenericValue makeValue(String entityName, Map<String,Object> fields)
OfBizDelegator
makeValue
in interface OfBizDelegator
entityName
- the entity name.fields
- initial field valuesOfBizDelegator.makeValue(String)
,
OfBizDelegator.createValue(String, java.util.Map)
public org.ofbiz.core.entity.GenericValue findById(String entityName, Long id) throws DataAccessException
OfBizDelegator
This method is a synonym for OfBizDelegator.findByPrimaryKey(String, Long)
findById
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML fileid
- The numeric "id" field value that is the primary key of this entity.DataAccessException
- DataAccessExceptionpublic org.ofbiz.core.entity.GenericValue findByPrimaryKey(String entityName, Long id) throws DataAccessException
OfBizDelegator
This method is a convenience for entities with a numeric primary key on single field called "id". This is the case for most JIRA entities.
findByPrimaryKey
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML fileid
- The numeric "id" field value that is the primary key of this entity.DataAccessException
- DataAccessExceptionOfBizDelegator.findByPrimaryKey(String, java.util.Map)
public org.ofbiz.core.entity.GenericValue findByPrimaryKey(String entityName, Map<String,?> fields) throws DataAccessException
OfBizDelegator
findByPrimaryKey
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity XML filefields
- The field/value pairs of the primary key (in JIRA, mostly just a single field "id")DataAccessException
- DataAccessExceptionOfBizDelegator.findByPrimaryKey(String, Long)
public List<org.ofbiz.core.entity.GenericValue> getRelated(String relationName, org.ofbiz.core.entity.GenericValue gv) throws DataAccessException
getRelated
in interface OfBizDelegator
DataAccessException
public List<org.ofbiz.core.entity.GenericValue> getRelated(String relationName, org.ofbiz.core.entity.GenericValue gv, List<String> orderBy) throws DataAccessException
getRelated
in interface OfBizDelegator
DataAccessException
public boolean removeRelated(String relationName, org.ofbiz.core.entity.GenericValue schemeGv)
OfBizDelegator
removeRelated
in interface OfBizDelegator
relationName
- the name of the relationship.schemeGv
- the gv at the start of the relationship.public long getCount(String entityName) throws DataAccessException
OfBizDelegator
COUNT *
query over the given entity.
Ensure that there is a view-entity defined in entitymodel.xml
and entitygroup.xml
for the entity
you are calling this method with, and that the view-entity is named correctly! The view-entity must be named
the name of the normal entity with "Count"
appended. For example, for the "Issue"
entity,
the view-entity must be called "IssueCount"
. Otherwise an exception will be thrown.
For JIRA core developers, see EntityEngine
's Select
factory for a more flexible alternative,
including the ability to terminate queries with .count()
instead of .asList()
to accomplish
a count without creating a special view entity for that purpose. For app developers, this can only be
done directly through the lower level DelegatorInterface
at this time.
getCount
in interface OfBizDelegator
entityName
- entity nameDataAccessException
- if data access problems occurpublic long getCountByAnd(String entityName, org.ofbiz.core.entity.EntityCondition condition)
OfBizDelegator
COUNT *
query over the given entity with some WHERE
conditions.
In addition to the restrictions given for OfBizDelegator.getCount(String)
, the view-entity will need to define
any columns that you wish to use in the where clause.
getCountByAnd
in interface OfBizDelegator
entityName
- entity namecondition
- The EntityCondition object that specifies how to constrain this queryOfBizDelegator.getCount(String)
public long getCountByAnd(String entityName, Map<String,?> fields)
OfBizDelegator
COUNT *
query over the given entity with some WHERE
conditions.
In addition to the restrictions given for OfBizDelegator.getCount(String)
, the view-entity will need to define
any columns that you wish to use in the where clause.
getCountByAnd
in interface OfBizDelegator
entityName
- entity namefields
- The fields of the named entity to query by with their corresponding valuesOfBizDelegator.getCount(String)
public List<org.ofbiz.core.entity.GenericValue> findByCondition(String entityName, org.ofbiz.core.entity.EntityCondition entityCondition, Collection<String> fieldsToSelect, List<String> orderBy) throws DataAccessException
OfBizDelegator
findByCondition
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity model XML fileentityCondition
- The EntityCondition object that specifies how to constrain this queryfieldsToSelect
- The fields of the named entity to get from the database; if empty or null all fields will be retreivedorderBy
- The fields of the named entity to order the query by; optionally add a " ASC" for ascending or " DESC" for descendingDataAccessException
- If an error occurs in the persistence layer.public List<org.ofbiz.core.entity.GenericValue> findByCondition(String entityName, org.ofbiz.core.entity.EntityCondition entityCondition, Collection<String> fieldsToSelect) throws DataAccessException
OfBizDelegator
Convenience method for calling OfBizDelegator.findByCondition(String, EntityCondition, Collection, List)
with
an empty orderBy list.
findByCondition
in interface OfBizDelegator
entityName
- The Name of the Entity as defined in the entity model XML fileentityCondition
- The EntityCondition object that specifies how to constrain this queryfieldsToSelect
- The fields of the named entity to get from the database; if empty or null all fields will be retreivedDataAccessException
- If an error occurs in the persistence layer.public org.ofbiz.core.entity.model.ModelReader getModelReader()
OfBizDelegator
getModelReader
in interface OfBizDelegator
ModelReader
public void refreshSequencer()
OfBizDelegator
refreshSequencer
in interface OfBizDelegator
public org.ofbiz.core.entity.DelegatorInterface getDelegatorInterface()
OfBizDelegator
getDelegatorInterface
in interface OfBizDelegator
public OfBizListIterator findListIteratorByCondition(String entityType, org.ofbiz.core.entity.EntityCondition condition) throws DataAccessException
OfBizDelegator
IMPORTANT: the returned iterator needs to be properly closed in a finally
block to avoid connection
leaks.
findListIteratorByCondition
in interface OfBizDelegator
DataAccessException
public OfBizListIterator findListIteratorByCondition(String entityName, org.ofbiz.core.entity.EntityCondition whereEntityCondition, org.ofbiz.core.entity.EntityCondition havingEntityCondition, Collection<String> fieldsToSelect, List<String> orderBy, org.ofbiz.core.entity.EntityFindOptions entityFindOptions) throws DataAccessException
OfBizDelegator
IMPORTANT: the returned iterator needs to be properly closed in a finally
block to avoid connection
leaks.
findListIteratorByCondition
in interface OfBizDelegator
DataAccessException
public int bulkUpdateByPrimaryKey(String entityName, Map<String,?> updateValues, List<Long> keys) throws DataAccessException
OfBizDelegator
bulkUpdateByPrimaryKey
in interface OfBizDelegator
entityName
- identifies the table to perform the update on.updateValues
- is a map where the key is the fieldName and the value
is the value to update the column to.keys
- is a list of Long values that represent the primary keys of the
the where clause.DataAccessException
- If an error occurs in the persistence layer.public int bulkUpdateByAnd(String entityName, Map<String,?> updateValues, Map<String,?> criteria) throws DataAccessException
OfBizDelegator
bulkUpdateByAnd
in interface OfBizDelegator
entityName
- identifies the table to perform the update on.updateValues
- is a map where the key is the fieldName and the value
is the value to update the column to.criteria
- map of field to value mapping that will be used to generate the
where clause of the update SQL statement. Multiple entries in the map are joined using the
AND operator.DataAccessException
- If an error occurs in the persistence layer.public int bulkCopyColumnValuesByAnd(String entityName, Map updateColumns, Map criteria) throws DataAccessException
OfBizDelegator
bulkCopyColumnValuesByAnd
in interface OfBizDelegator
entityName
- table na,eupdateColumns
- map of update to - update from columnscriteria
- map of column names and their values that will create WHERE clauseDataAccessException
- If an error occurs in the persistence layer.public int removeByOr(String entityName, String entityId, List<Long> ids) throws DataAccessException, org.ofbiz.core.entity.GenericModelException
OfBizDelegator
entityName
and where entityId
- Specified by:
removeByOr
in interface OfBizDelegator
- Parameters:
entityName
- identifies the table to perform the remove on.
entityId
- the Ofbiz fieldName to be used for the identifier, eg WHERE fieldName IN (...). Must be the
same case as that found in entitymodel.xml.
ids
- a list of entity IDs of the rows to be removed
- Returns:
- number of rows removed
- Throws:
DataAccessException
- if there are problems executing/accessing the data store
org.ofbiz.core.entity.GenericModelException
- if the given entityId is not valid for the given entity
-
transform
public List<org.ofbiz.core.entity.GenericValue> transform(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
List<String> orderBy,
String lockField,
org.ofbiz.core.entity.Transformation transformation)
Description copied from interface: OfBizDelegator
Applies the given transformation to any entities matching the given condition.
- Specified by:
transform
in interface OfBizDelegator
- Parameters:
entityName
- the type of entity to transform (required)
entityCondition
- the condition that selects the entities to transform (null means transform all)
orderBy
- the order in which the entities should be selected for updating (null means no ordering)
lockField
- the entity field to use for optimistic locking; the value of this field will be read
between the SELECT and the UPDATE to determine whether another process has updated one of the target records in
the meantime; if so, the transformation will be reapplied and another UPDATE attempted
transformation
- the transformation to apply (required)
- Returns:
- the transformed entities in the order they were selected (never null)
-
transformOne
public org.ofbiz.core.entity.GenericValue transformOne(String entityName,
org.ofbiz.core.entity.EntityCondition entityCondition,
String lockField,
org.ofbiz.core.entity.Transformation transformation)
Description copied from interface: OfBizDelegator
Applies the given transformation to the entity matching the given condition.
- Specified by:
transformOne
in interface OfBizDelegator
- Parameters:
entityName
- the type of entity to transform (required)
entityCondition
- the condition that selects the entity to transform (must select one entity)
lockField
- the entity field to use for optimistic locking; the value of this field will be read
between the SELECT and the UPDATE to determine whether another process has updated one of the target records in
the meantime; if so, the transformation will be reapplied and another UPDATE attempted
transformation
- the transformation to apply (required)
- Returns:
- the transformed entity (never null)
Copyright © 2002-2024 Atlassian. All Rights Reserved.