@RestController @EnableHypermediaSupport(type=HAL) public class TaskanaEngineController extends Object
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<VersionRepresentationModel> |
currentVersion()
Get the current application version.
|
org.springframework.http.ResponseEntity<List<String>> |
getClassificationCategories(String type) |
org.springframework.http.ResponseEntity<Map<String,List<String>>> |
getClassificationCategoriesByTypeMap() |
org.springframework.http.ResponseEntity<List<String>> |
getClassificationTypes() |
org.springframework.http.ResponseEntity<TaskanaUserInfoRepresentationModel> |
getCurrentUserInfo() |
org.springframework.http.ResponseEntity<List<String>> |
getDomains() |
org.springframework.http.ResponseEntity<Boolean> |
getIsHistoryProviderEnabled() |
@GetMapping(path="/api/v1/domains") public org.springframework.http.ResponseEntity<List<String>> getDomains()
@GetMapping(path="/api/v1/classification-categories") public org.springframework.http.ResponseEntity<List<String>> getClassificationCategories(String type)
@GetMapping(path="/api/v1/classification-types") public org.springframework.http.ResponseEntity<List<String>> getClassificationTypes()
@GetMapping(path="/api/v1/classifications-by-type") public org.springframework.http.ResponseEntity<Map<String,List<String>>> getClassificationCategoriesByTypeMap()
@GetMapping(path="/api/v1/current-user-info") public org.springframework.http.ResponseEntity<TaskanaUserInfoRepresentationModel> getCurrentUserInfo()
@GetMapping(path="/api/v1/history-provider-enabled") public org.springframework.http.ResponseEntity<Boolean> getIsHistoryProviderEnabled()
@GetMapping(path="/api/v1/version") public org.springframework.http.ResponseEntity<VersionRepresentationModel> currentVersion()
Copyright © 2020. All rights reserved.