Package com.skava.business.factory
Interface UserConsentHistoryFactory
- All Known Implementing Classes:
UserConsentHistoryFactoryImpl
public interface UserConsentHistoryFactory
An interface to define the factory for creating User Consent History objects.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptioncreateUserConsentHistoryList
(List<UserConsentHistoryDomain> userConsentHistory) This method converts the list ofUserConsentHistoryDomain
object to the list ofUserConsentHistory
object.
-
Method Details
-
createUserConsentHistoryList
List<UserConsentHistory> createUserConsentHistoryList(List<UserConsentHistoryDomain> userConsentHistory) This method converts the list ofUserConsentHistoryDomain
object to the list ofUserConsentHistory
object.- Parameters:
userConsentHistory
- HoldsList
ofUserConsentHistoryDomain
object which is used to convert UserConsentHistoryDomain list to UserConsentHistory list object.- Returns:
- the
List
ofUserConsentHistory
object.
-