| Package | Description |
|---|---|
| org.finra.herd.dao | |
| org.finra.herd.dao.helper | |
| org.finra.herd.dao.impl | |
| org.finra.herd.model.jpa | |
| org.finra.herd.service.helper |
| Modifier and Type | Method and Description |
|---|---|
TagEntity |
TagDao.getTagByKey(TagKey tagKey)
Get a tag entity by its key.
|
TagEntity |
TagDao.getTagByTagTypeAndDisplayName(String tagTypeCode,
String displayName)
Get a tag entity by its tag type code and display name.
|
| Modifier and Type | Method and Description |
|---|---|
List<TagEntity> |
TagDao.getChildrenTags(List<TagEntity> parentTagEntities)
Gets a list of tag entities that are immediate children of the specified parent tag entities.
|
List<TagEntity> |
TagDao.getMostRecentTags(int numberOfResults)
Gets the most recent of all tag entities
|
List<TagEntity> |
TagDao.getPercentageOfAllTags(double percentage)
Gets a percentage of all tag entities.
|
List<TagEntity> |
TagDao.getTags()
Gets a list of all tag entities registered in the system.
|
List<TagEntity> |
TagDao.getTagsByIds(List<Long> ids)
Gets a list of tag entities by a list of ids
|
List<TagEntity> |
TagDao.getTagsByTagTypeEntityAndParentTagCode(TagTypeEntity tagTypeEntity,
String parentTagCode,
Boolean isParentTagNull)
Gets a list of tag entities per specified parameters.
|
| Modifier and Type | Method and Description |
|---|---|
BusinessObjectDefinitionTagEntity |
BusinessObjectDefinitionTagDao.getBusinessObjectDefinitionTagByParentEntities(BusinessObjectDefinitionEntity businessObjectDefinitionEntity,
TagEntity tagEntity)
Gets a business object definition tag by business object definition and tag entities.
|
| Modifier and Type | Method and Description |
|---|---|
List<BusinessObjectDefinitionEntity> |
BusinessObjectDefinitionDao.getBusinessObjectDefinitions(List<TagEntity> tagEntities)
Gets a list of all business object definition entities for the specified list of tag entities.
|
List<BusinessObjectDefinitionTagKey> |
BusinessObjectDefinitionTagDao.getBusinessObjectDefinitionTagsByTagEntities(List<TagEntity> tagEntities)
Gets a list of keys for all business object definition tags associated with the specified list of tag entities.
|
List<TagEntity> |
TagDao.getChildrenTags(List<TagEntity> parentTagEntities)
Gets a list of tag entities that are immediate children of the specified parent tag entities.
|
| Modifier and Type | Method and Description |
|---|---|
TagEntity |
TagDaoHelper.getTagEntity(TagKey tagKey)
Gets a tag entity and ensure it exists.
|
| Modifier and Type | Method and Description |
|---|---|
List<TagEntity> |
TagDaoHelper.getTagChildrenEntities(TagEntity parentTagEntity)
Create a list of tag entities along with all its children tags down the hierarchy up to maximum allowed tag nesting level.
|
| Modifier and Type | Method and Description |
|---|---|
List<TagEntity> |
TagDaoHelper.getTagChildrenEntities(TagEntity parentTagEntity)
Create a list of tag entities along with all its children tags down the hierarchy up to maximum allowed tag nesting level.
|
void |
TagDaoHelper.validateParentTagEntity(TagEntity tagEntity,
TagEntity parentTagEntity)
Validate the update tag request parent tag key.
|
| Modifier and Type | Method and Description |
|---|---|
TagEntity |
TagDaoImpl.getTagByKey(TagKey tagKey) |
TagEntity |
TagDaoImpl.getTagByTagTypeAndDisplayName(String tagTypeCode,
String displayName) |
| Modifier and Type | Method and Description |
|---|---|
List<TagEntity> |
TagDaoImpl.getChildrenTags(List<TagEntity> parentTagEntities) |
List<TagEntity> |
TagDaoImpl.getMostRecentTags(int numberOfResults) |
List<TagEntity> |
TagDaoImpl.getPercentageOfAllTags(double percentage) |
List<TagEntity> |
TagDaoImpl.getTags() |
List<TagEntity> |
TagDaoImpl.getTagsByIds(List<Long> ids) |
List<TagEntity> |
TagDaoImpl.getTagsByTagTypeEntityAndParentTagCode(TagTypeEntity tagTypeEntity,
String parentTagCode,
Boolean isParentTagNull) |
| Modifier and Type | Method and Description |
|---|---|
BusinessObjectDefinitionTagEntity |
BusinessObjectDefinitionTagDaoImpl.getBusinessObjectDefinitionTagByParentEntities(BusinessObjectDefinitionEntity businessObjectDefinitionEntity,
TagEntity tagEntity) |
| Modifier and Type | Method and Description |
|---|---|
List<BusinessObjectDefinitionEntity> |
BusinessObjectDefinitionDaoImpl.getBusinessObjectDefinitions(List<TagEntity> tagEntities) |
List<BusinessObjectDefinitionTagKey> |
BusinessObjectDefinitionTagDaoImpl.getBusinessObjectDefinitionTagsByTagEntities(List<TagEntity> tagEntities) |
List<TagEntity> |
TagDaoImpl.getChildrenTags(List<TagEntity> parentTagEntities) |
| Modifier and Type | Field and Description |
|---|---|
static javax.persistence.metamodel.CollectionAttribute<TagEntity,BusinessObjectDefinitionTagEntity> |
TagEntity_.businessObjectDefinitionTags |
static javax.persistence.metamodel.ListAttribute<TagEntity,TagEntity> |
TagEntity_.childrenTagEntities |
static javax.persistence.metamodel.ListAttribute<TagEntity,TagEntity> |
TagEntity_.childrenTagEntities |
static javax.persistence.metamodel.SingularAttribute<TagEntity,String> |
TagEntity_.description |
static javax.persistence.metamodel.SingularAttribute<TagEntity,String> |
TagEntity_.displayName |
static javax.persistence.metamodel.SingularAttribute<TagEntity,Long> |
TagEntity_.id |
static javax.persistence.metamodel.SingularAttribute<TagEntity,TagEntity> |
TagEntity_.parentTagEntity |
static javax.persistence.metamodel.SingularAttribute<TagEntity,TagEntity> |
TagEntity_.parentTagEntity |
static javax.persistence.metamodel.SingularAttribute<TagEntity,BigDecimal> |
TagEntity_.searchScoreMultiplier |
static javax.persistence.metamodel.SingularAttribute<BusinessObjectDefinitionTagEntity,TagEntity> |
BusinessObjectDefinitionTagEntity_.tag |
static javax.persistence.metamodel.SingularAttribute<TagEntity,String> |
TagEntity_.tagCode |
static javax.persistence.metamodel.SingularAttribute<TagEntity,TagTypeEntity> |
TagEntity_.tagType |
| Modifier and Type | Method and Description |
|---|---|
TagEntity |
TagEntity.getParentTagEntity() |
TagEntity |
BusinessObjectDefinitionTagEntity.getTag() |
| Modifier and Type | Method and Description |
|---|---|
List<TagEntity> |
TagEntity.getChildrenTagEntities() |
| Modifier and Type | Method and Description |
|---|---|
void |
TagEntity.setParentTagEntity(TagEntity parentTagEntity) |
void |
BusinessObjectDefinitionTagEntity.setTag(TagEntity tag) |
| Modifier and Type | Method and Description |
|---|---|
void |
TagEntity.setChildrenTagEntities(List<TagEntity> childrenTagEntities) |
| Modifier and Type | Method and Description |
|---|---|
void |
SearchIndexUpdateHelper.modifyTagInSearchIndex(TagEntity tagEntity,
String modificationType)
Modify a tag
|
String |
TagHelper.safeObjectMapperWriteValueAsString(TagEntity tagEntity)
Wrapper method that will safely call the object mapper write value as string method and handle the JsonProcessingException.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TagHelper.executeFunctionForTagEntities(String indexName,
List<TagEntity> tagEntities,
TriConsumer<String,String,String> function)
Executes a function for tag entities.
|
void |
SearchIndexUpdateHelper.modifyTagsInSearchIndex(List<TagEntity> tagEntityList,
String modificationType)
Modify a list of tags
|
Copyright © 2021. All rights reserved.