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

com.liferay.portal.tools.servicebuilder.dependencies.finder.ftl Maven / Gradle / Ivy

There is a newer version: 7.0.0-nightly
Show newest version
package ${packagePath}.service.persistence;

import aQute.bnd.annotation.ProviderType;

<#if pluginName == "">
	@ProviderType


public interface ${entity.name}Finder {

	<#list methods as method>
		<#if !method.isConstructor() && method.isPublic()>
			public ${serviceBuilder.getTypeGenericsName(method.returns)} ${method.name}(

			<#list method.parameters as parameter>
				${serviceBuilder.getTypeGenericsName(parameter.type)} ${parameter.name}

				<#if parameter_has_next>
					,
				
			

			)

			<#list method.exceptions as exception>
				<#if exception_index == 0>
					throws
				

				${exception.value}

				<#if exception_has_next>
					,
				
			;
		
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy