Merge "BUG-1521 Netconf-monitoring test coverage raise"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / GlobalConstants.java
index 6f60a522fdb5ba5780dc5034c9be45efee931528..ceb4553470933330516bd945652a07045dcf7e85 100644 (file)
@@ -1,6 +1,5 @@
-
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013-2014 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -14,12 +13,14 @@ package org.opendaylight.controller.sal.utils;
  *
  */
 public enum GlobalConstants {
-    DEFAULT("default"), 
-    CONTAINERMANAGER("containermanager"), 
-    CONTAINERNAME("name"), 
-    STATICVLAN("staticvlan"), 
-    CLUSTERINGSERVICES("clusteringservices"), 
-    STARTUPHOME("configuration/startup/");
+    DEFAULT("default"),
+    CONTAINERMANAGER("containermanager"),
+    CONTAINERNAME("name"),
+    STATICVLAN("staticvlan"),
+    CLUSTERINGSERVICES("clusteringservices"),
+    STARTUPHOME("configuration/startup/"),
+    PROTOCOLPLUGINTYPE("protocolPluginType"),
+    PROTOCOLPLUGINPRIORITY("protocolPluginPriority");
 
     private GlobalConstants(String name) {
         this.name = name;
@@ -30,4 +31,4 @@ public enum GlobalConstants {
     public String toString() {
         return name;
     }
-}
\ No newline at end of file
+}