| Package | Description |
|---|---|
| org.finra.herd.dao | |
| org.finra.herd.dao.impl | |
| org.finra.herd.model.jpa | |
| org.finra.herd.service.helper | |
| org.finra.herd.service.impl |
| Modifier and Type | Method and Description |
|---|---|
StorageUnitEntity |
StorageUnitDao.getStorageUnitByBusinessObjectDataAndStorage(BusinessObjectDataEntity businessObjectDataEntity,
StorageEntity storageEntity)
Gets a storage unit identified by the given business object data entity and storage entity.
|
StorageUnitEntity |
StorageUnitDao.getStorageUnitByBusinessObjectDataAndStorageName(BusinessObjectDataEntity businessObjectDataEntity,
String storageName)
Gets a storage unit identified by the given business object data entity and storage name.
|
StorageUnitEntity |
StorageUnitDao.getStorageUnitByStorageNameAndDirectoryPath(String storageName,
String directoryPath)
Returns a first discovered storage unit in the specified storage that overlaps with the directory path.
|
| Modifier and Type | Method and Description |
|---|---|
List<StorageUnitEntity> |
StorageUnitDao.getGlacierStorageUnitsToRestore(int maxResult)
Retrieves a list of storage units that belong to GLACIER storage and have the origin S3 storage unit in RESTORING state.
|
List<StorageUnitEntity> |
StorageUnitDao.getStorageUnitsByPartitionFiltersAndStorages(BusinessObjectFormatKey businessObjectFormatKey,
List<List<String>> partitionFilters,
Integer businessObjectDataVersion,
String businessObjectDataStatus,
List<String> storageNames,
String storagePlatformType,
String excludedStoragePlatformType,
boolean selectOnlyAvailableStorageUnits)
Retrieves a list of storage unit entities per specified parameters.
|
List<StorageUnitEntity> |
StorageUnitDao.getStorageUnitsByStorageAndBusinessObjectData(StorageEntity storageEntity,
List<BusinessObjectDataEntity> businessObjectDataEntities)
Retrieves a list of storage units that belong to the specified storage for the specified business object data.
|
List<StorageUnitEntity> |
StorageUnitDao.getStorageUnitsByStoragePlatformAndBusinessObjectData(String storagePlatform,
BusinessObjectDataEntity businessObjectDataEntity)
Retrieves a list of storage units that belong to storage of the specified storage platform for the specified business object data.
|
| Modifier and Type | Method and Description |
|---|---|
org.apache.commons.collections4.MultiValuedMap<Integer,String> |
StorageFileDao.getStorageFilePathsByStorageUnits(List<StorageUnitEntity> storageUnitEntities)
Retrieves a map of storage unit ids to their corresponding storage file paths.
|
| Modifier and Type | Method and Description |
|---|---|
StorageUnitEntity |
StorageUnitDaoImpl.getStorageUnitByBusinessObjectDataAndStorage(BusinessObjectDataEntity businessObjectDataEntity,
StorageEntity storageEntity) |
StorageUnitEntity |
StorageUnitDaoImpl.getStorageUnitByBusinessObjectDataAndStorageName(BusinessObjectDataEntity businessObjectDataEntity,
String storageName) |
StorageUnitEntity |
StorageUnitDaoImpl.getStorageUnitByStorageNameAndDirectoryPath(String storageName,
String directoryPath) |
| Modifier and Type | Method and Description |
|---|---|
List<StorageUnitEntity> |
StorageUnitDaoImpl.getGlacierStorageUnitsToRestore(int maxResult) |
List<StorageUnitEntity> |
StorageUnitDaoImpl.getStorageUnitsByPartitionFiltersAndStorages(BusinessObjectFormatKey businessObjectFormatKey,
List<List<String>> partitionFilters,
Integer businessObjectDataVersion,
String businessObjectDataStatus,
List<String> storageNames,
String storagePlatformType,
String excludedStoragePlatformType,
boolean selectOnlyAvailableStorageUnits) |
List<StorageUnitEntity> |
StorageUnitDaoImpl.getStorageUnitsByStorageAndBusinessObjectData(StorageEntity storageEntity,
List<BusinessObjectDataEntity> businessObjectDataEntities) |
List<StorageUnitEntity> |
StorageUnitDaoImpl.getStorageUnitsByStoragePlatformAndBusinessObjectData(String storagePlatform,
BusinessObjectDataEntity businessObjectDataEntity) |
| Modifier and Type | Method and Description |
|---|---|
org.apache.commons.collections4.MultiValuedMap<Integer,String> |
StorageFileDaoImpl.getStorageFilePathsByStorageUnits(List<StorageUnitEntity> storageUnitEntities) |
| Modifier and Type | Field and Description |
|---|---|
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,BusinessObjectDataEntity> |
StorageUnitEntity_.businessObjectData |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,String> |
StorageUnitEntity_.directoryPath |
static javax.persistence.metamodel.CollectionAttribute<StorageUnitEntity,StorageUnitStatusHistoryEntity> |
StorageUnitEntity_.historicalStatuses |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,Integer> |
StorageUnitEntity_.id |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,StorageUnitEntity> |
StorageUnitEntity_.parentStorageUnit |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,StorageUnitEntity> |
StorageUnitEntity_.parentStorageUnit |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,StorageUnitStatusEntity> |
StorageUnitEntity_.status |
static javax.persistence.metamodel.SingularAttribute<StorageUnitEntity,StorageEntity> |
StorageUnitEntity_.storage |
static javax.persistence.metamodel.CollectionAttribute<StorageUnitEntity,StorageFileEntity> |
StorageUnitEntity_.storageFiles |
static javax.persistence.metamodel.SingularAttribute<StorageUnitStatusHistoryEntity,StorageUnitEntity> |
StorageUnitStatusHistoryEntity_.storageUnit |
static javax.persistence.metamodel.SingularAttribute<StorageFileEntity,StorageUnitEntity> |
StorageFileEntity_.storageUnit |
static javax.persistence.metamodel.CollectionAttribute<BusinessObjectDataEntity,StorageUnitEntity> |
BusinessObjectDataEntity_.storageUnits |
| Modifier and Type | Method and Description |
|---|---|
StorageUnitEntity |
StorageUnitEntity.getParentStorageUnit() |
StorageUnitEntity |
StorageFileEntity.getStorageUnit() |
StorageUnitEntity |
StorageUnitStatusHistoryEntity.getStorageUnit() |
| Modifier and Type | Method and Description |
|---|---|
Collection<StorageUnitEntity> |
BusinessObjectDataEntity.getStorageUnits() |
| Modifier and Type | Method and Description |
|---|---|
void |
StorageUnitEntity.setParentStorageUnit(StorageUnitEntity parentStorageUnit) |
void |
StorageFileEntity.setStorageUnit(StorageUnitEntity storageUnit) |
void |
StorageUnitStatusHistoryEntity.setStorageUnit(StorageUnitEntity storageUnit) |
| Modifier and Type | Method and Description |
|---|---|
void |
BusinessObjectDataEntity.setStorageUnits(Collection<StorageUnitEntity> storageUnits) |
| Modifier and Type | Method and Description |
|---|---|
StorageUnitEntity |
StorageUnitDaoHelper.getStorageUnitEntity(String storageName,
BusinessObjectDataEntity businessObjectDataEntity)
Retrieves a storage unit entity for the business object data in the specified storage and make sure it exists.
|
| Modifier and Type | Method and Description |
|---|---|
List<StorageUnitEntity> |
StorageUnitHelper.excludeBusinessObjectDataStatus(List<StorageUnitEntity> storageUnitEntities,
String excludedBusinessObjectDataStatus)
Excludes storage units from the list with the specified business object data status.
|
protected List<StorageUnitEntity> |
Hive13DdlGenerator.excludeDuplicateBusinessObjectData(List<StorageUnitEntity> storageUnitEntities,
List<String> storageNames,
List<StorageEntity> storageEntities)
Eliminate storage units that belong to the same business object data by picking storage unit registered in a storage listed earlier in the list of
storage names specified in the request.
|
List<StorageUnitEntity> |
StorageUnitHelper.excludePartitions(List<StorageUnitEntity> storageUnitEntities,
List<List<String>> excludedPartitions)
Excludes storage units from the list with primary and sub-partition values matching one of the excluded partitions.
|
| Modifier and Type | Method and Description |
|---|---|
List<StorageFileEntity> |
StorageFileDaoHelper.createStorageFileEntitiesFromStorageFiles(StorageUnitEntity storageUnitEntity,
List<StorageFile> storageFiles)
Creates storage file entities from the list of storage files.
|
StorageUnitAlternateKeyDto |
StorageUnitHelper.createStorageUnitKeyFromEntity(StorageUnitEntity storageUnitEntity)
Creates a storage unit key from a storage unit entity.
|
void |
StorageUnitDaoHelper.updateStorageUnitStatus(StorageUnitEntity storageUnitEntity,
StorageUnitStatusEntity storageUnitStatusEntity,
String reason)
Update the storage unit status.
|
void |
StorageUnitDaoHelper.updateStorageUnitStatus(StorageUnitEntity storageUnitEntity,
String storageUnitStatus,
String reason)
Update the storage unit status.
|
| Modifier and Type | Method and Description |
|---|---|
List<StorageUnit> |
StorageUnitHelper.createStorageUnitsFromEntities(Collection<StorageUnitEntity> storageUnitEntities)
Creates a list of storage units from the list of storage unit entities.
|
List<StorageUnitEntity> |
StorageUnitHelper.excludeBusinessObjectDataStatus(List<StorageUnitEntity> storageUnitEntities,
String excludedBusinessObjectDataStatus)
Excludes storage units from the list with the specified business object data status.
|
protected List<StorageUnitEntity> |
Hive13DdlGenerator.excludeDuplicateBusinessObjectData(List<StorageUnitEntity> storageUnitEntities,
List<String> storageNames,
List<StorageEntity> storageEntities)
Eliminate storage units that belong to the same business object data by picking storage unit registered in a storage listed earlier in the list of
storage names specified in the request.
|
List<StorageUnitEntity> |
StorageUnitHelper.excludePartitions(List<StorageUnitEntity> storageUnitEntities,
List<List<String>> excludedPartitions)
Excludes storage units from the list with primary and sub-partition values matching one of the excluded partitions.
|
Set<BusinessObjectDataEntity> |
StorageUnitHelper.getBusinessObjectDataEntitiesSet(List<StorageUnitEntity> storageUnitEntities)
Creates a set of business object data entities per specified list of storage unit entities.
|
| Modifier and Type | Method and Description |
|---|---|
protected StorageUnitEntity |
BusinessObjectDataInitiateRestoreHelperServiceImpl.getGlacierStorageUnit(BusinessObjectDataEntity businessObjectDataEntity)
Retrieves a Glacier storage unit for the specified business object data.
|
protected StorageUnitEntity |
BusinessObjectDataFinalizeRestoreHelperServiceImpl.getGlacierStorageUnit(BusinessObjectDataEntity businessObjectDataEntity,
String storageName)
Retrieves a Glacier storage unit per specified parameters.
|
protected StorageUnitEntity |
BusinessObjectDataFinalizeRestoreHelperServiceImpl.getOriginStorageUnit(StorageUnitEntity glacierStorageUnitEntity)
Retrieves an origin storage unit for the specified Glacier storage unit and validates it.
|
protected StorageUnitEntity |
BusinessObjectDataInitiateRestoreHelperServiceImpl.getOriginStorageUnit(StorageUnitEntity glacierStorageUnitEntity)
Retrieves an origin storage unit for the specified Glacier storage unit and validates it.
|
| Modifier and Type | Method and Description |
|---|---|
protected StorageUnitEntity |
BusinessObjectDataFinalizeRestoreHelperServiceImpl.getOriginStorageUnit(StorageUnitEntity glacierStorageUnitEntity)
Retrieves an origin storage unit for the specified Glacier storage unit and validates it.
|
protected StorageUnitEntity |
BusinessObjectDataInitiateRestoreHelperServiceImpl.getOriginStorageUnit(StorageUnitEntity glacierStorageUnitEntity)
Retrieves an origin storage unit for the specified Glacier storage unit and validates it.
|
Copyright © 2017. All rights reserved.