Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #6335 incompatible URLs on data-manager's DisplayApplicationResource #6343

Merged
merged 2 commits into from
Apr 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ public QueryResponse getQueryByGUID(@PathVariable String serverName,
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/elements/{parentGUID}/data-containers")
@PostMapping(path = "/schemas/elements/{parentGUID}/data-containers")
mandy-chessell marked this conversation as resolved.
Show resolved Hide resolved

public GUIDResponse createDataContainer(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -863,7 +863,7 @@ public GUIDResponse createDataContainer(@PathVariable String s
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/elements/{parentGUID}/data-containers/from-template/{templateGUID}")
@PostMapping(path = "/schemas/elements/{parentGUID}/data-containers/from-template/{templateGUID}")

public GUIDResponse createDataContainerFromTemplate(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -890,7 +890,7 @@ public GUIDResponse createDataContainerFromTemplate(@PathVariable String
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/data-containers/{dataContainerGUID}")
@PostMapping(path = "/schemas/data-containers/{dataContainerGUID}")

public VoidResponse updateDataContainer(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -916,7 +916,7 @@ public VoidResponse updateDataContainer(@PathVariable String s
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/data-containers/{dataContainerGUID}/delete")
@PostMapping(path = "/schemas/data-containers/{dataContainerGUID}/delete")

public VoidResponse removeDataContainer(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -943,7 +943,7 @@ public VoidResponse removeDataContainer(@PathVariable String
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/data-containers/by-search-string")
@PostMapping(path = "/schemas/data-containers/by-search-string")

public DataContainersResponse findDataContainers(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -969,7 +969,7 @@ public DataContainersResponse findDataContainers(@PathVariable String
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@GetMapping(path = "/data-containers/by-parent-element/{parentGUID}")
@GetMapping(path = "/schemas/data-containers/by-parent-element/{parentGUID}")

public DataContainersResponse getDataContainersForParent(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -996,7 +996,7 @@ public DataContainersResponse getDataContainersForParent(@PathVariable String se
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@PostMapping(path = "/data-containers/by-name")
@PostMapping(path = "/schemas/data-containers/by-name")

public DataContainersResponse getDataContainersByName(@PathVariable String serverName,
@PathVariable String userId,
Expand All @@ -1020,7 +1020,7 @@ public DataContainersResponse getDataContainersByName(@PathVariable String
* UserNotAuthorizedException the user is not authorized to issue this request or
* PropertyServerException there is a problem reported in the open metadata server(s)
*/
@GetMapping(path = "/data-containers/{dataContainerGUID}")
@GetMapping(path = "/schemas/data-containers/{dataContainerGUID}")

public DataContainerResponse getDataContainerByGUID(@PathVariable String serverName,
@PathVariable String userId,
Expand Down