Class DomainVisitor

java.lang.Object
com.aquima.interactions.metamodel.impl.DomainVisitor
All Implemented Interfaces:
IDomainVisitor

public class DomainVisitor extends Object implements IDomainVisitor
Implementation of the domain visitor interface used during initialization of the domains from data source.
Since:
5.0
Author:
O. Kerpershoek
  • Constructor Details

    • DomainVisitor

      protected DomainVisitor(MetaModel metaModel)
  • Method Details

    • process

      public void process(IDomainDS domainDS)
      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 interface IDomainVisitor
      Parameters:
      domainDS - containing the information needed to construct a domain definition.