Move pcep base parser Activator to its own bundle
[bgpcep.git] / pcep / segment-routing / src / main / java / org / opendaylight / protocol / pcep / segment / routing / SrPathSetupTypeTlvParser.java
1 /*
2  * Copyright (c) 2014 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.segment.routing;
9
10 import org.opendaylight.protocol.pcep.parser.tlv.PathSetupTypeTlvParser;
11
12 public class SrPathSetupTypeTlvParser extends PathSetupTypeTlvParser {
13
14     private static final short SR_TE_PST = 1;
15
16     public SrPathSetupTypeTlvParser() {
17         super();
18         PSTS.add(SR_TE_PST);
19     }
20
21 }