Fix most bgp-parser-spi checkstyle violations
[bgpcep.git] / bgp / parser-spi / src / main / java / org / opendaylight / protocol / bgp / parser / spi / MultiPathSupportUtil.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 package org.opendaylight.protocol.bgp.parser.spi;
9
10 import static java.util.Objects.requireNonNull;
11
12 import java.util.Optional;
13 import javax.annotation.Nonnull;
14 import javax.annotation.Nullable;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev180329.BgpTableType;
16
17 public final class MultiPathSupportUtil {
18
19     private MultiPathSupportUtil() {
20         throw new UnsupportedOperationException();
21     }
22
23     /**
24      * Check is AFI/SAFI is supported by {@link MultiPathSupport} service.
25      * @param constraints Peer specific constraint.
26      * @param afiSafi Required AFI/SAFI
27      * @return True if AFI/SAFI is supported.
28      */
29     public static boolean isTableTypeSupported(@Nullable final PeerSpecificParserConstraint constraints,
30             @Nonnull final BgpTableType afiSafi) {
31         requireNonNull(afiSafi);
32         if (constraints != null) {
33             final Optional<MultiPathSupport> peerConstraint = constraints.getPeerConstraint(MultiPathSupport.class);
34             return peerConstraint.isPresent() && peerConstraint.get().isTableTypeSupported(afiSafi);
35         }
36         return false;
37     }
38 }