SpringInterfacesSplitResponseEntityNoSwaggerAnnotations.api.mustache Maven / Gradle / Ivy
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}}