blob: 6b919c3929a34437b2dccc63aafd13f69f4a737c [file] [log] [blame]
Mohammad Shahid30fedc52017-08-09 11:49:40 +05301/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.bgpio.protocol.evpn;
18
19/**
20 * Enum to provide EVPN RouteType.
21 */
22public enum BgpEvpnRouteType {
23 ETHERNET_AUTO_DISCOVERY(1), MAC_IP_ADVERTISEMENT(2),
24 INCLUSIVE_MULTICASE_ETHERNET(3), ETHERNET_SEGMENT(4);
25 int value;
26
27 /**
28 * Assign val with the value as the route type.
29 *
30 * @param val route type
31 */
32 BgpEvpnRouteType(int val) {
33 value = val;
34 }
35
36 /**
37 * Returns value of route type.
38 *
39 * @return route type
40 */
41 public byte getType() {
42 return (byte) value;
43 }
44}