Package com.skava.business.factory
Interface CollectionDomainFactory
- All Known Implementing Classes:
CollectionDomainFactoryImpl
public interface CollectionDomainFactory
An interface to define the factory for creating CollectionDomain objects.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptioncreateCollectionDO
(Collection collection) This method converts theCollection
object toCollectionDomain
object.createCollectionPropertyDO
(CollectionPropertyEntity collectionProperties) This method converts theCollectionPropertyEntity
object toCollectionPropertyDomain
object.createCollectionPropertyDO
(CollectionProperty collectionProperty) This method converts theCollectionProperty
object toCollectionPropertyDomain
object.
-
Method Details
-
createCollectionDO
This method converts theCollection
object toCollectionDomain
object.- Parameters:
collection
- HoldsCollection
object for creating a collection domain object.- Returns:
- The
CollectionDomain
object.
-
createCollectionPropertyDO
This method converts theCollectionProperty
object toCollectionPropertyDomain
object.- Parameters:
collectionProperty
- HoldsCollectionProperty
object for creating collection property domain object.- Returns:
- The
CollectionPropertyDomain
object.
-
createCollectionPropertyDO
This method converts theCollectionPropertyEntity
object toCollectionPropertyDomain
object.- Parameters:
collectionProperties
- HoldsCollectionPropertyEntity
object for creating collection property domain object.- Returns:
- The
CollectionPropertyDomain
object.
-