1 package com.teamkonzept.lib.templates;2 3 4 /**5 * Erlaubte Template Endungen6 * 7 * @author $Author: mischa $8 * @version $Revision: 1.2 $9 */10 public interface TemplateTypes 11 {12 String TK_TEMPLATE = ".TMPL";13 String JSP_TEMPLATE = ".WSP";14 String XSLT_TEMPLATE = ".WSL"; // ?? Das koennte doch eher die Standard Endung sein15 }16