com.vaadin.flow.server.frontend.
Interface EndpointGeneratorTaskFactory
-
All Known Implementing Classes:
public interface EndpointGeneratorTaskFactory
A factory for creating Vaadin Endpoint generator tasks.
For internal use only. May be renamed or removed in a future release.
Since:
6.0
Author:
Vaadin Ltd.
-
-
Method Summary
All Methods Modifier and Type Method and Description TaskGenerateFusion
createTaskGenerateFusion(File applicationProperties, File openApi, File outputFolder, File frontendDirectory)
Create a task for generating TS files based.
TaskGenerateOpenAPI
createTaskGenerateOpenAPI(File properties, File javaSourceFolder, ClassLoader classLoader, File output)
Create a task for generating OpenAPI spec.
TaskUseFusionPackage
createTaskUseFusionPackage(File npmFolder, File generatedPath, File flowResourcesPath, String buildDir)
Create a task for populating the package.json with Fusion dependencies.
-
-
-
Method Detail
-
createTaskGenerateFusion
TaskGenerateFusion createTaskGenerateFusion(File applicationProperties, File openApi, File outputFolder, File frontendDirectory)
Create a task for generating TS files based.
Parameters:
applicationProperties
- application properties file.openApi
- openApi json file. notnull
outputFolder
- the output folder. notnull
frontendDirectory
- the frontend folder.Returns:
an endpoint tasks for generating TypeScript files for endpoints.
-
createTaskGenerateOpenAPI
TaskGenerateOpenAPI createTaskGenerateOpenAPI(File properties, File javaSourceFolder, ClassLoader classLoader, File output)
Create a task for generating OpenAPI spec.
Parameters:
properties
- application properties file.javaSourceFolder
- source paths of the project containing Vaadin Endpoint. notnull
classLoader
- The class loader which should be used to resolved types in the source paths. notnull
output
- the output path of the generated json file. notnull
Returns:
an endpoint task that generates open api json file.
-
createTaskUseFusionPackage
TaskUseFusionPackage createTaskUseFusionPackage(File npmFolder, File generatedPath, File flowResourcesPath, String buildDir)
Create a task for populating the package.json with Fusion dependencies.
Parameters:
npmFolder
- folder with the `package.json` filegeneratedPath
- folder where flow generated files will be placed.flowResourcesPath
- folder where flow dependencies will be copied to.buildDir
- the used build directoryReturns:
an endpoint task that adds Fusion packages to a package.json file
-
-