Project

General

Profile

1
package eu.dnetlib.data.search.transform.config.vocabularies;
2

    
3
/**
4
 * Created by kiatrop on 18/6/2014.
5
 */
6
public class FormatterParams {
7
    String xsl_file;
8
    String template_file;
9

    
10
    public String getXsl_file() {
11
        return xsl_file;
12
    }
13

    
14
    public void setXsl_file(String xsl_file) {
15
        this.xsl_file = xsl_file;
16
    }
17

    
18
    public String getTemplate_file() {
19
        return template_file;
20
    }
21

    
22
    public void setTemplate_file(String template_file) {
23
        this.template_file = template_file;
24
    }
25
}
    (1-1/1)