Provide Add Path support for all AFI/SAFI
[bgpcep.git] / bgp / path-selection-mode / src / main / java / org / opendaylight / protocol / bgp / mode / impl / add / all / paths / AllPathSelection.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.all.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 class AllPathSelection implements PathSelectionMode {
18     private final BGPPeerTracker peerTracker;
19
20     public AllPathSelection(final BGPPeerTracker peerTracker) {
21         this.peerTracker = requireNonNull(peerTracker);
22     }
23
24     @Override
25     public RouteEntry createRouteEntry() {
26         return new ComplexRouteEntry(this.peerTracker);
27     }
28
29     @Override
30     public void close() {
31         //no-op
32     }
33 }