Interface CatalogVersionJobDao
-
- All Known Implementing Classes:
DefaultCatalogVersionJobDao
public interface CatalogVersionJobDao- Since:
- 4.3
- Spring Bean ID:
- removeItemCounter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetItemInstanceCount(CatalogModel catalogModel, java.util.Collection<ComposedTypeModel> composedTypes)Returns the item count for the given catalog.intgetItemInstanceCount(CatalogVersionModel catalogVersion, ComposedTypeModel composedType)Returns the item count which match the givenComposedTypeModelandCatalogVersionModel.intgetItemInstanceCount(CatalogVersionModel catalogVersion, java.util.Collection<ComposedTypeModel> composedTypes)Return the item count which match the givenCatalogVersionModel.intgetItemInstanceCount(java.util.Collection<CatalogVersionModel> catalogVersions, java.util.Collection<ComposedTypeModel> composedTypes)Returns the item count for the given collection ofCatalogVersionModels.java.util.List<ComposedTypeModel>getOrderedComposedTypes()Returns sortedComposedTypeModellist according toComposedTypeSorterstrategy.java.util.List<PK>getPKList(ComposedTypeModel composedTypeModel, CatalogVersionModel version)
-
-
-
Method Detail
-
getItemInstanceCount
int getItemInstanceCount(CatalogModel catalogModel, java.util.Collection<ComposedTypeModel> composedTypes)
Returns the item count for the given catalog. AllComposedTypeModels with acatalogversionattribute in allCatalogVersionModels of the catalog are counted
-
getItemInstanceCount
int getItemInstanceCount(java.util.Collection<CatalogVersionModel> catalogVersions, java.util.Collection<ComposedTypeModel> composedTypes)
Returns the item count for the given collection ofCatalogVersionModels. AllComposedTypeModels with acatalogversionattribute are counted.
-
getItemInstanceCount
int getItemInstanceCount(CatalogVersionModel catalogVersion, java.util.Collection<ComposedTypeModel> composedTypes)
Return the item count which match the givenCatalogVersionModel. AllComposedTypeModels with acatalogversionattribute are counted.
-
getItemInstanceCount
int getItemInstanceCount(CatalogVersionModel catalogVersion, ComposedTypeModel composedType)
Returns the item count which match the givenComposedTypeModelandCatalogVersionModel.
-
getOrderedComposedTypes
java.util.List<ComposedTypeModel> getOrderedComposedTypes()
Returns sortedComposedTypeModellist according toComposedTypeSorterstrategy.
-
getPKList
java.util.List<PK> getPKList(ComposedTypeModel composedTypeModel, CatalogVersionModel version)
-
-