Interface ProjectControllerApi
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-09-12T06:34:46.260927317Z[Etc/UTC]")
@Validated
public interface ProjectControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<AbstractConfiguratorModelDto>> getEnvironments(@NotNull @Valid String projectId) GET /rest/environments : getEnvironmentsorg.springframework.http.ResponseEntity<EnvironmentDto> getEnvironmentsFull(@NotNull @Valid String environmentId, @NotNull @Valid String projectId) GET /rest/environments/full : getEnvironmentsFullorg.springframework.http.ResponseEntity<ProjectDto> getProject(@NotNull @Valid String projectId) GET /rest/project : getProjectorg.springframework.http.ResponseEntity<List<AbstractConfiguratorModelDto>> GET /rest/projects : getProjectsorg.springframework.http.ResponseEntity<SystemEnvironmentsViewDto> getSystemsForProject(@NotNull @Valid String projectId) GET /rest/environments/systems : getSystemsForProject
-
Method Details
-
getEnvironments
@RequestMapping(method=GET, value="/rest/environments", produces="application/json") org.springframework.http.ResponseEntity<List<AbstractConfiguratorModelDto>> getEnvironments(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid String projectId) GET /rest/environments : getEnvironments- Parameters:
projectId- projectId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getEnvironmentsFull
@RequestMapping(method=GET, value="/rest/environments/full", produces="application/json") org.springframework.http.ResponseEntity<EnvironmentDto> getEnvironmentsFull(@NotNull @Valid @RequestParam(value="environmentId",required=true) @NotNull @Valid String environmentId, @NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid String projectId) GET /rest/environments/full : getEnvironmentsFull- Parameters:
environmentId- environmentId (required)projectId- projectId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getProject
@RequestMapping(method=GET, value="/rest/project", produces="application/json") org.springframework.http.ResponseEntity<ProjectDto> getProject(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid String projectId) GET /rest/project : getProject- Parameters:
projectId- projectId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getProjects
@RequestMapping(method=GET, value="/rest/projects", produces="application/json") org.springframework.http.ResponseEntity<List<AbstractConfiguratorModelDto>> getProjects()GET /rest/projects : getProjects- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getSystemsForProject
@RequestMapping(method=GET, value="/rest/environments/systems", produces="application/json") org.springframework.http.ResponseEntity<SystemEnvironmentsViewDto> getSystemsForProject(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid String projectId) GET /rest/environments/systems : getSystemsForProject- Parameters:
projectId- projectId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-