
org.yestech.notify.template.VelocityTemplateLanguagePersistence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yesnotify Show documentation
Show all versions of yesnotify Show documentation
Framework to sent emails using templates.
Currently xsl and velocity template engines are supported.
/*
* Copyright LGPL3
* YES Technology Association
* http://yestech.org
*
* http://www.opensource.org/licenses/lgpl-3.0.html
*/
package org.yestech.notify.template;
import org.springframework.beans.factory.annotation.Required;
import java.io.Serializable;
import java.util.HashMap;
/**
* Used to persist the internal of {@link org.yestech.notify.template.VelocityTemplateLanguage}
*/
final public class VelocityTemplateLanguagePersistence implements ITemplateLanguagePersistence> {
private static final long serialVersionUID = 4456953920956635949L;
private HashMap data;
private String filePath;
public VelocityTemplateLanguagePersistence() {
super();
}
public HashMap getData() {
return data;
}
public String getFilePath() {
return filePath;
}
public void setData(HashMap data) {
this.data = data;
}
@Required
public void setFilePath(String filePath) {
this.filePath = filePath;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy