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 2015/04/08 11:16:32 UTC

[4/6] incubator-brooklyn git commit: Riak - update bucket type effectors' description

Riak - update bucket type effectors' description


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/63bac13b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/63bac13b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/63bac13b

Branch: refs/heads/master
Commit: 63bac13bd11617799fe4f09e61f0bb29b6c60dff
Parents: adbf2dc
Author: Valentin Aitken <va...@cloudsoftcorp.com>
Authored: Tue Apr 7 16:36:55 2015 +0300
Committer: Valentin Aitken <va...@cloudsoftcorp.com>
Committed: Wed Apr 8 01:11:47 2015 +0300

----------------------------------------------------------------------
 .../main/java/brooklyn/entity/nosql/riak/RiakNode.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/63bac13b/software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java
----------------------------------------------------------------------
diff --git a/software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java b/software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java
index ea12f8b..dd984b8 100644
--- a/software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java
+++ b/software/nosql/src/main/java/brooklyn/entity/nosql/riak/RiakNode.java
@@ -197,20 +197,20 @@ public interface RiakNode extends SoftwareProcess {
     @Effector(description = "Commit changes made to the Riak cluster")
     void commitCluster();
 
-    @Effector(description = "Create bucket type")
+    @Effector(description = "Create or modify a bucket type before activation")
     void bucketTypeCreate(@EffectorParam(name = "bucketTypeName") String bucketTypeName,
                           @EffectorParam(name = "bucketTypeProperties") String bucketTypeProperties);
 
-    @Effector(description = "List bucket types")
+    @Effector(description = "List all currently available bucket types and their activation status")
     List<String> bucketTypeList();
 
-    @Effector(description = "Status bucket type")
+    @Effector(description = "Display the status and properties of a specific bucket type")
     List<String> bucketTypeStatus(@EffectorParam(name = "bucketTypeName") String bucketTypeName);
 
-    @Effector(description = "Update bucket type")
+    @Effector(description = "Update a bucket type after activation")
     void bucketTypeUpdate(@EffectorParam(name = "bucketTypeName") String bucketTypeName,
                           @EffectorParam(name = "bucketTypeProperties") String bucketTypeProperties);
 
-    @Effector(description = "Activate bucket type")
+    @Effector(description = "Activate a bucket type")
     void bucketTypeActivate(@EffectorParam(name = "bucketTypeName") String bucketTypeName);
 }