1 package org.kuali.rice.krms.service;
2
3 import org.kuali.rice.krms.builder.ComponentBuilder;
4 import org.kuali.rice.krms.dto.TemplateInfo;
5
6 /**
7 * Created with IntelliJ IDEA.
8 * User: SW
9 * Date: 2012/11/29
10 * Time: 4:20 PM
11 * To change this template use File | Settings | File Templates.
12 */
13 public interface TemplateRegistry {
14
15 public TemplateInfo getTemplateForType(String type);
16
17 public String getTermSpecNameForType(String type);
18
19 public String getOperationForType(String type);
20
21 public String getValueForType(String type);
22
23 public ComponentBuilder getComponentBuilderForType(String type);
24
25 }