Fixed binding-parent groupId. It was causing build failure
[ovsdb.git] / plugin / src / main / java / org / opendaylight / ovsdb / plugin / internal / Encapsulation.java
1 /*
2  * Copyright (c) 2014, 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.internal;
10
11 public enum Encapsulation {
12
13     VXLAN("vxlan"), GRE("gre"), CAPWAP("capwap");
14
15     private final String value;
16
17     private Encapsulation(final String value) {
18         this.value = value;
19     }
20
21     public String getValue() {
22         return value;
23     }
24
25     @Override
26     public String toString() {
27         return getValue();
28     }
29 }