templates.operation.PersistenceInterface.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tentackle-wizard-maven-plugin Show documentation
Show all versions of tentackle-wizard-maven-plugin Show documentation
Maven Plugin for Tentackle Wizards
package ${persistencePackage};
import ${operationPackage}.${operationInterface};
import org.tentackle.pdo.DomainContext;
import org.tentackle.pdo.PersistentOperation;
/**
* Persistence interface for ${operationInterface}.
*/
<#if abstractOperation == "true">
public interface ${persistenceInterface}> extends ${superPersistenceInterface} {
<#else>
public interface ${persistenceInterface} extends ${superPersistenceInterface}<${operationInterface}> {
#if>
}