Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bgp / path-selection-mode / src / main / java / org / opendaylight / protocol / bgp / mode / impl / add / n / paths / AddPathBestNPathSelection.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.protocol.bgp.mode.impl.add.n.paths;
10
11 import static java.util.Objects.requireNonNull;
12
13 import org.opendaylight.protocol.bgp.mode.api.PathSelectionMode;
14 import org.opendaylight.protocol.bgp.mode.api.RouteEntry;
15 import org.opendaylight.protocol.bgp.rib.spi.BGPPeerTracker;
16
17 public final class AddPathBestNPathSelection implements PathSelectionMode {
18     private final long npaths;
19     private final BGPPeerTracker peerTracker;
20
21     public AddPathBestNPathSelection(final long npaths, final BGPPeerTracker peerTracker) {
22         this.npaths = npaths;
23         this.peerTracker = requireNonNull(peerTracker);
24     }
25
26     @Override
27     public void close() {
28         //no-op
29     }
30
31     @Override
32     public RouteEntry createRouteEntry() {
33         return new ComplexRouteEntry(this.npaths, this.peerTracker);
34     }
35 }