templates.ResolvedCustomFunctionSpecification.hbs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
package {{packageName}};
import io.polyapi.client.api.model.function.PolyCustomFunction;
import io.polyapi.client.api.model.PolyEntity;
import io.polyapi.client.api.model.PolyMetadata;
import io.polyapi.commons.api.model.PolyGeneratedClass;
{{~#each imports}}
import {{this}};
{{~/each}}
/**
* Poly custom function with ID {{id}}.
*/
@PolyEntity("{{id}}")
@PolyMetadata(delegate = "{{{delegate}}}",
paramNames = { {{{paramNames}}} },
paramTypes = { {{{paramTypes}}} })
@PolyGeneratedClass
public interface {{className}} extends PolyCustomFunction {
{{{returnType}}} {{{methodSignature}}};
}