Package io.micronaut.starter.api
Interface ApplicationTypeOperations
- All Known Implementing Classes:
ApplicationController
public interface ApplicationTypeOperations
Operations on application types.
- Since:
- 1.0.0
- Author:
- graemerocher
-
Method Summary
Modifier and TypeMethodDescriptionfeatures
(ApplicationType type, RequestInfo serverURL) List the type features.getType
(ApplicationType type, RequestInfo serverURL) Get a specific application type.list
(RequestInfo serverURL) List the application types.
-
Method Details
-
list
List the application types.- Parameters:
serverURL
- The server URL- Returns:
- The types
-
getType
@Get("/application-types/{type}") ApplicationTypeDTO getType(ApplicationType type, RequestInfo serverURL) Get a specific application type.- Parameters:
type
- The typeserverURL
- The server URL- Returns:
- The type
-
features
@Get("/application-types/{type}/features") FeatureList features(ApplicationType type, RequestInfo serverURL) List the type features.- Parameters:
type
- The featuresserverURL
- The server URL- Returns:
- The features
-