You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/08/25 13:17:16 UTC

[brooklyn-server] branch master updated: hide the deprecated entities/activities endpoint

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-server.git


The following commit(s) were added to refs/heads/master by this push:
     new fccad0d  hide the deprecated entities/activities endpoint
fccad0d is described below

commit fccad0dcb36e88bfd004ee6de84b99a3ace6b842
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Wed Aug 25 14:16:04 2021 +0100

    hide the deprecated entities/activities endpoint
---
 rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/EntityApi.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/EntityApi.java b/rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/EntityApi.java
index f51c854..6c35f69 100644
--- a/rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/EntityApi.java
+++ b/rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/EntityApi.java
@@ -129,7 +129,7 @@ public interface EntityApi {
     /** @deprecated since 0.12.0 use {@link #listTasks(String, String, int, Boolean)} */
     @GET
     @Path("/{entity}/activities/deprecated")
-    @ApiOperation(value = "Fetch list of tasks for this entity")
+    @ApiOperation(value = "Fetch list of tasks for this entity", hidden = true)
     @ApiResponses(value = {
             @ApiResponse(code = 404, message = "Could not find application or entity")
     })