Fix license header violations in plugin
[netvirt.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / api / ConnectionConstants.java
1 /*
2  * Copyright (c) 2013, 2015 Red Hat, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.ovsdb.plugin.api;
10
11 /**
12  * ConnectionConstants
13  * Expand this enum as and when needed to support other connection parameters that
14  * might be needed for certain protocol plugins.
15  */
16 public enum ConnectionConstants {
17     ADDRESS("address"),
18     PORT("port"),
19     PROTOCOL("protocol"),
20     USERNAME("username"),
21     PASSWORD("password");
22
23     private ConnectionConstants(String name) {
24         this.name = name;
25     }
26
27     private String name;
28
29     public String toString() {
30         return name;
31     }
32 }