
org.yestech.notify.template.NullTemplateLanguagePersistence 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
*/
/*
*
* Author: Artie Copeland
* Last Modified Date: $DateTime: $
*/
package org.yestech.notify.template;
import java.io.Serializable;
/**
* A null persistence
*
* @author Artie Copeland
* @version $Revision: $
*/
public class NullTemplateLanguagePersistence implements ITemplateLanguagePersistence {
private static final long serialVersionUID = 4456953920956635949L;
@Override
public void setData(String data) {
}
@Override
public String getData() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy