final TemplateLoader templateLoader = TemplateResourceLoader
.create();
final Template template = templateLoader.getTemplate(templateFile);
Validate.notNull(template, "Template required for '%s'",
templateFile);
final String templateContents = template
.renderToString(dataDictionary);
final String templateId = PhysicalTypeIdentifier.createIdentifier(
templateType,
LogicalPath.getInstance(Path.SRC_MAIN_JAVA, moduleName));
return typeParsingService.getTypeFromString(templateContents,