You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sh...@apache.org on 2015/09/04 17:09:25 UTC

airavata git commit: Adding missing constant variables

Repository: airavata
Updated Branches:
  refs/heads/master 2640e89a2 -> 26ef3e43a


Adding missing constant variables


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/26ef3e43
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/26ef3e43
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/26ef3e43

Branch: refs/heads/master
Commit: 26ef3e43a3aaa29d2abd3b59db93b86910099b23
Parents: 2640e89
Author: Shameera Rathanyaka <sh...@gmail.com>
Authored: Fri Sep 4 11:09:20 2015 -0400
Committer: Shameera Rathanyaka <sh...@gmail.com>
Committed: Fri Sep 4 11:09:20 2015 -0400

----------------------------------------------------------------------
 .../java/org/apache/airavata/common/utils/ZkConstants.java  | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/26ef3e43/modules/commons/src/main/java/org/apache/airavata/common/utils/ZkConstants.java
----------------------------------------------------------------------
diff --git a/modules/commons/src/main/java/org/apache/airavata/common/utils/ZkConstants.java b/modules/commons/src/main/java/org/apache/airavata/common/utils/ZkConstants.java
index afa5d33..d4d90d2 100644
--- a/modules/commons/src/main/java/org/apache/airavata/common/utils/ZkConstants.java
+++ b/modules/commons/src/main/java/org/apache/airavata/common/utils/ZkConstants.java
@@ -21,4 +21,13 @@
 package org.apache.airavata.common.utils;
 
 public interface ZkConstants {
+
+	public static final String ZOOKEEPER_SERVERS_NODE = "/servers";
+	public static final String ZOOKEEPER_GFAC_SERVER_NODE = "/gfac";
+	public static final String ZOOKEEPER_EXPERIMENT_NODE = "/experiments";
+	public static final String ZOOKEEPER_DELIVERYTAG_NODE = "/deliveryTag";
+	public static final String ZOOKEEPER_TOKEN_NODE = "/token";
+	public static final String ZOOKEEPER_CANCEL_LISTENER_NODE = "/cancelListener";
+	public static final String ZOOKEEPER_CANCEL_REQEUST = "CANCEL_REQUEST";
+
 }