Package it.eng.spagobi.engines.talend.exception

Examples of it.eng.spagobi.engines.talend.exception.TemplateParseException


    jobSB = (SourceBean)template.getAttribute("JOB");
    Assert.assertNotNull(jobSB, "template cannot be null");
   
    name = (String)jobSB.getAttribute("jobName");
    if(name == null) {
      throw new TemplateParseException(template, "Missing Talend project name in document template");
    }
  
    project = (String)jobSB.getAttribute("project");
    if(project == null) {
      throw new TemplateParseException(template, "Missing Talend project name in document template");
    }
   
    language = (String)jobSB.getAttribute("language");
    if(language == null) {
      throw new TalendEngineException("Missing Talend job language in document template");
View Full Code Here

TOP

Related Classes of it.eng.spagobi.engines.talend.exception.TemplateParseException

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.