001    package org.kuali.rice.krms.service;
002    
003    import org.kuali.rice.krms.builder.ComponentBuilder;
004    import org.kuali.rice.krms.dto.TemplateInfo;
005    
006    /**
007     * Created with IntelliJ IDEA.
008     * User: SW
009     * Date: 2012/11/29
010     * Time: 4:20 PM
011     * To change this template use File | Settings | File Templates.
012     */
013    public interface TemplateRegistry {
014    
015        public TemplateInfo getTemplateForType(String type);
016    
017        public String getTermSpecNameForType(String type);
018    
019        public String getOperationForType(String type);
020    
021        public String getValueForType(String type);
022    
023        public ComponentBuilder getComponentBuilderForType(String type);
024    
025    }