Merge "Randomize port to allow concurrent execution"
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / object / PCEPBranchNodeListObject.java
1 /*
2  * Copyright (c) 2013 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.pcep.object;
9
10 import java.util.List;
11
12 import org.opendaylight.protocol.pcep.subobject.ExplicitRouteSubobject;
13
14 /**
15  * Structure of Branch Node list object.
16  *
17  * @see <a href="http://tools.ietf.org/html/rfc6006#section-3.11.1">Branch Node
18  *      Object [RFC6006]</a>
19  */
20 public class PCEPBranchNodeListObject extends PCEPBranchNodeObject {
21
22     /**
23      * Constructs Branch Node list object.
24      *
25      * @param subobjects
26      *            List<ExplicitRouteSubobject>
27      * @param processed
28      *            boolean
29      * @param ignored
30      *            boolean
31      */
32     public PCEPBranchNodeListObject(List<ExplicitRouteSubobject> subobjects, boolean processed, boolean ignored) {
33         super(subobjects, processed, ignored);
34     }
35 }