Merge "Support proper route redistribution"
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BestPath.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, 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 package org.opendaylight.protocol.bgp.rib.impl;
9
10 import com.google.common.base.Preconditions;
11 import com.google.common.primitives.UnsignedInteger;
12 import javax.annotation.Nonnull;
13
14 final class BestPath {
15     private final UnsignedInteger routerId;
16     private final BestPathState state;
17
18     BestPath(@Nonnull final UnsignedInteger routerId, @Nonnull final BestPathState state) {
19         this.routerId = Preconditions.checkNotNull(routerId);
20         this.state = Preconditions.checkNotNull(state);
21     }
22
23     UnsignedInteger getRouterId() {
24         return routerId;
25     }
26
27     BestPathState getState() {
28         return state;
29     }
30 }