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

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

There is a newer version: 21.16.1.0
Show newest version

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy