All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.operation.DomainInterface.ftl Maven / Gradle / Ivy

There is a newer version: 21.16.1.0
Show newest version

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}> {


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy