X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fadsal%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Futils%2FGlobalConstants.java;fp=opendaylight%2Fadsal%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Futils%2FGlobalConstants.java;h=ceb4553470933330516bd945652a07045dcf7e85;hp=0000000000000000000000000000000000000000;hb=42c32160bfd41de57189bb246fec5ffb48ed8e9e;hpb=edf5bfcee83c750853253ccfd991ba7000f5f65b diff --git a/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/GlobalConstants.java b/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/GlobalConstants.java new file mode 100644 index 0000000000..ceb4553470 --- /dev/null +++ b/opendaylight/adsal/sal/api/src/main/java/org/opendaylight/controller/sal/utils/GlobalConstants.java @@ -0,0 +1,34 @@ +/* + * 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, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + +package org.opendaylight.controller.sal.utils; + +/** + * Global Constants + * + */ +public enum GlobalConstants { + DEFAULT("default"), + CONTAINERMANAGER("containermanager"), + CONTAINERNAME("name"), + STATICVLAN("staticvlan"), + CLUSTERINGSERVICES("clusteringservices"), + STARTUPHOME("configuration/startup/"), + PROTOCOLPLUGINTYPE("protocolPluginType"), + PROTOCOLPLUGINPRIORITY("protocolPluginPriority"); + + private GlobalConstants(String name) { + this.name = name; + } + + private String name; + + public String toString() { + return name; + } +}