Package com.skava.business.factory
Interface UserConsentHistoryDomainFactory
- All Known Implementing Classes:
UserConsentHistoryDomainFactoryImpl
public interface UserConsentHistoryDomainFactory
An interface to define the factory for creating User Consent History objects.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptioncreateUserConsentHistoryDomainFromEntity
(List<UserConsentHistoryEntity> userConsentHistoryEntity) This method converts theList
ofUserConsentHistoryEntity
object to theList
ofUserConsentHistoryDomain
object.
-
Method Details
-
createUserConsentHistoryDomainFromEntity
List<UserConsentHistoryDomain> createUserConsentHistoryDomainFromEntity(List<UserConsentHistoryEntity> userConsentHistoryEntity) This method converts theList
ofUserConsentHistoryEntity
object to theList
ofUserConsentHistoryDomain
object.- Parameters:
userConsentHistoryEntity
- Holds theList
ofUserConsentHistoryEntity
objects which is used for creating the list ofUserConsentHistoryDomain
object.- Returns:
- The
List
ofUserConsentHistoryDomain
object
-