Project

General

Profile

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

    
3
public class XSLTTransformation extends Transformation {
4
	private String xslt;
5

    
6
	public XSLTTransformation(String xslt) {
7
		this.xslt = xslt;
8
	}
9

    
10
	public void setXslt(String xslt) {
11
		this.xslt = xslt;
12
	}
13

    
14
	public String getXslt() {
15
		return xslt;
16
	}
17
}
(9-9/9)