remove unnecesary boxing / unboxing
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / PSTUtil.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.pcep.spi;
10
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.path.setup.type.tlv.PathSetupType;
12
13 public final class PSTUtil {
14     private PSTUtil() {
15         throw new UnsupportedOperationException();
16     }
17
18     /**
19      *  Check whether Path is setup via RSVP-TE signaling protocol
20      * @param pst
21      * @return  true if setup is via RSVP-TE signaling protocol
22      */
23     public static boolean isDefaultPST(final PathSetupType pst) {
24         if (pst != null && pst.getPst() != null && pst.getPst() != 0) {
25             return false;
26         }
27         return true;
28     }
29 }