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

kotlin-spring.serviceImpl.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package {{package}}

{{#imports}}import {{import}}
{{/imports}}
import org.springframework.stereotype.Service
@Service
{{#operations}}
class {{classname}}ServiceImpl : {{classname}}Service {
{{#operation}}

    override fun {{operationId}}({{#allParams}}{{paramName}}: {{>optionalDataType}}{{#hasMore}}, {{/hasMore}}{{/allParams}}): {{>returnTypes}} {
        TODO("Implement me")
    }
{{/operation}}
}
{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy