Project

General

Profile

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

    
3
/**
4
 * Created by kiatrop on 23/6/2014.
5
 */
6
public class FormatterConfiguration {
7
    private String template;
8
    private String xsl_file;
9

    
10
    public String getTemplate() {
11
        return template;
12
    }
13

    
14
    public void setTemplate(String template) {
15
        this.template = template;
16
    }
17

    
18
    public String getXsl_file() {
19
        return xsl_file;
20
    }
21

    
22
    public void setXsl_file(String xsl_file) {
23
        this.xsl_file = xsl_file;
24
    }
25
}
(4-4/9)