Package org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.grammar

Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.grammar.CheckingException


    // TODO: Consolidate this method with MappingManager.validateMappings()
    public void lookForMissingRequiredMappingsAndMappingConflicts() throws CheckingException {
      // first check if any required mapping are missing
      if(m_targetTreeComponent.m_root.missingRequiredMappings())
        throw new CheckingException("Missing some required mappings");
    List<MappingConflictChecker> targetLoopNodeList=Lists.newArrayList();
    m_targetTreeComponent.m_root.collectSourcePathConflict(targetLoopNodeList);
    for(MappingConflictChecker cp:targetLoopNodeList){
        cp.checkNotConflict();
    }
View Full Code Here


  }

  public void checkNotConflict() throws CheckingException {
        if(status==CONFLICT_PATH){
            throw new CheckingException("Conflict mapping on the target loop node: "+targetDE);
        }
  }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.grammar.CheckingException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.