blob: 250287a33a96e3a3eb80d32489c6209e79b1f8ea [file] [log] [blame]
sunish vk30637eb2016-02-16 15:19:32 +05301/*
2 * Copyright 2016 Open Networking Laboratory
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 */
16package org.onosproject.ospf.controller;
17
18/**
19 * Enum representing OSPF neighbor state.
20 */
21public enum OspfNeighborState {
22
23 DOWN(1),
24 ATTEMPT(2),
25 INIT(3),
26 TWOWAY(4),
27 EXSTART(5),
28 EXCHANGE(6),
29 LOADING(7),
30 FULL(8);
31
32 private int value;
33
34 /**
35 * Creates an OSPF neighbor state.
36 *
37 * @param value represents neighbors state
38 */
39 OspfNeighborState(int value) {
40 this.value = value;
41 }
42
43 /**
44 * Gets value of neighbor state.
45 *
46 * @return value represents neighbors state
47 */
48 public int getValue() {
49 return value;
50 }
51}