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

core.src.api.EventsResource.mustache Maven / Gradle / Ivy

There is a newer version: 4.8.4
Show newest version
package {{packageName}}.core.{{contractName}}

{{#eventImports}}
    {{import}}
{{/eventImports}}
{{#modelImports}}
    {{import}}
{{/modelImports}}
import org.web3j.openapi.core.SubResource
import javax.annotation.Generated
import javax.ws.rs.Path
import io.swagger.v3.oas.annotations.Operation

{{#contractDetails}}
@Generated
interface {{capitalizedContractName}}Events : SubResource {

    @Operation(tags = ["{{capitalizedContractName}} Events"], summary = "List all {{capitalizedContractName}} events")
    override fun findAll(): List

{{/contractDetails}}
{{#contractResources.eventResources}}
    {{{path}}}
    {{resource}} : {{{returnType}}}

{{/contractResources.eventResources}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy