templates.operation.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 ${operationPackage}.${operationInterface};
import org.tentackle.pdo.DomainContext;
import org.tentackle.pdo.DomainOperation;
/**
* Domain interface for ${operationInterface}.
*/
<#if abstractOperation == "true">
public interface ${domainInterface}> extends ${superDomainInterface} {
<#else>
public interface ${domainInterface} extends ${superDomainInterface}<${operationInterface}> {
#if>
}