package eu.dnetlib.espas.jdbc.configuration;

import javax.xml.bind.annotation.XmlAttribute;

public class Template {
    private String name;
    private String path;

    public Template() {
    }

    public Template(String name, String path) {
        this.name = name;
        this.path = path;
    }

    @XmlAttribute(required = true)
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @XmlAttribute(required = true)
    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }
}
