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

SpringInterfacesSplitResponseEntityNoSwaggerAnnotations.api.mustache Maven / Gradle / Ivy

There is a newer version: 0.5.0-beta-1
Show newest version
package {{package}};

import {{modelPackage}}.*;

{{#imports}}import {{import}};
{{/imports}}

import java.util.List;

import java.io.InputStream;

import org.springframework.http.ResponseEntity;
import org.springframework.web.multipart.MultipartFile;

//
// GENERATED CLASS, DO NOT EDIT
//
// Business Interface - without REST annotations on purpose. Needs to be implemented.
//

{{#operations}}
public interface {{classname}} {

{{#operation}}
    ResponseEntity<{{>returnTypes}}> {{nickname}}({{#allParams}}{{>queryParamsBusiness}}{{>pathParamsBusiness}}{{>headerParamsBusiness}}{{>bodyParamsBusiness}}{{>formParamsBusiness}}{{#hasMore}},
    {{/hasMore}}{{/allParams}});
{{/operation}}
}
{{/operations}}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy