@RestController public class TaskanaEngineController extends Object
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<VersionResource> |
currentVersion()
Get the current application version.
|
org.springframework.http.ResponseEntity<List<String>> |
getClassificationCategories(String type) |
org.springframework.http.ResponseEntity<List<String>> |
getClassificationTypes() |
org.springframework.http.ResponseEntity<TaskanaUserInfoResource> |
getCurrentUserInfo() |
org.springframework.http.ResponseEntity<List<String>> |
getDomains() |
org.springframework.http.ResponseEntity<Boolean> |
getIsHistoryProviderEnabled() |
@GetMapping(path="/v1/domains",
produces="application/json")
public org.springframework.http.ResponseEntity<List<String>> getDomains()
@GetMapping(path="/v1/classification-categories",
produces="application/json")
public org.springframework.http.ResponseEntity<List<String>> getClassificationCategories(String type)
@GetMapping(path="/v1/classification-types",
produces="application/json")
public org.springframework.http.ResponseEntity<List<String>> getClassificationTypes()
@GetMapping(path="/v1/current-user-info",
produces="application/json")
public org.springframework.http.ResponseEntity<TaskanaUserInfoResource> getCurrentUserInfo()
@GetMapping(path="/v1/history-provider-enabled",
produces="application/json")
public org.springframework.http.ResponseEntity<Boolean> getIsHistoryProviderEnabled()
@GetMapping(path="/v1/version",
produces="application/json")
public org.springframework.http.ResponseEntity<VersionResource> currentVersion()
Copyright © 2019. All rights reserved.