templates.pdo.DomainInterface.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 ${domainPackage};
import ${pdoPackage}.${pdoInterface};
import org.tentackle.pdo.DomainObject;
/**
* Domain interface for ${pdoInterface}.
*/
<#if pdoInheritance != "NONE">
public interface ${domainInterface}> extends ${superDomainInterface} {
<#else>
public interface ${domainInterface} extends ${superDomainInterface}<${pdoInterface}> {
#if>
}