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/28 11:55:47 UTC

[7/9] incubator-brooklyn git commit: add Beta annotation to ADDITIONAL_INBOUND_PORTS

add Beta annotation to ADDITIONAL_INBOUND_PORTS


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

Branch: refs/heads/master
Commit: 263e1e71722287089e37cac7989d577293597e5c
Parents: 7296fa1
Author: Robert Moss <ro...@gmail.com>
Authored: Fri Apr 17 13:38:47 2015 +0100
Committer: Robert Moss <ro...@gmail.com>
Committed: Fri Apr 17 13:38:47 2015 +0100

----------------------------------------------------------------------
 .../main/java/brooklyn/location/cloud/CloudLocationConfig.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/263e1e71/core/src/main/java/brooklyn/location/cloud/CloudLocationConfig.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/brooklyn/location/cloud/CloudLocationConfig.java b/core/src/main/java/brooklyn/location/cloud/CloudLocationConfig.java
index ad19f39..5aad7bd 100644
--- a/core/src/main/java/brooklyn/location/cloud/CloudLocationConfig.java
+++ b/core/src/main/java/brooklyn/location/cloud/CloudLocationConfig.java
@@ -18,6 +18,8 @@
  */
 package brooklyn.location.cloud;
 
+import com.google.common.annotations.Beta;
+
 import brooklyn.config.ConfigKey;
 import brooklyn.entity.basic.ConfigKeys;
 import brooklyn.event.basic.BasicConfigKey;
@@ -75,7 +77,7 @@ public interface CloudLocationConfig {
     public static final ConfigKey<Object> INBOUND_PORTS = new BasicConfigKey<Object>(Object.class, "inboundPorts", 
         "Inbound ports to be applied when creating a VM, on supported clouds " +
             "(either a single port as a String, or an Iterable<Integer> or Integer[])", null);
-    
+    @Beta
     public static final ConfigKey<Object> ADDITIONAL_INBOUND_PORTS = new BasicConfigKey<Object>(Object.class, "required.ports", 
             "Required additional ports to be applied when creating a VM, on supported clouds " +
                     "(either a single port as an Integer, or an Iterable<Integer> or Integer[])", null);