Class DomainVisitor
java.lang.Object
com.aquima.interactions.metamodel.impl.DomainVisitor
- All Implemented Interfaces:
IDomainVisitor
Implementation of the domain visitor interface used during initialization of the domains from data source.
- Since:
- 5.0
- Author:
- O. Kerpershoek
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
DomainVisitor
-
-
Method Details
-
process
Description copied from interface:IDomainVisitor
This method should be invoked by the data layer to add a domain definition. The process method will validate the data passed through the IDomainDS and will construct a domain definition based on the data. When an invalid implementation of the data source is passed to this method (for instance not a unique name) this method will throw an exception, and the domain definition will be ignored.- Specified by:
process
in interfaceIDomainVisitor
- Parameters:
domainDS
- containing the information needed to construct a domain definition.- Throws:
InitializationException
- this exception is thrown when the data passed is not valid.
-