Package com.skava.business.factory
Interface UserConsentDomainFactory
- All Known Implementing Classes:
UserConsentDomainFactoryImpl
public interface UserConsentDomainFactory
An interface to define the factory for creating User Consent domain objects.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptioncreateUserConsentDO
(UserConsent consent) This method converts theUserConsent
object toUserConsentDomain
object.
-
Method Details
-
createUserConsentDO
This method converts theUserConsent
object toUserConsentDomain
object.- Parameters:
consent
- Holds theUserConsent
object for creating userconsent domain object.- Returns:
- The
UserConsentDomain
object.
-
createUserConsentEntityListDO
- Parameters:
consent
- Holds theList
ofUserConsentDomain
objects for creating the list of user consent domain object.- Returns:
- The
List
ofUserConsentDomain
object.
-