Revert "BUG-47 : unfinished PCEP migration to generated DTOs."
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / concepts / IPv4ExtendedTunnelIdentifier.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.concepts;
9
10 import org.opendaylight.protocol.concepts.IPv4Address;
11
12 /**
13  * Specific structure of IPv4 Extended Tunnel Identifier.
14  *
15  * @see <a
16  *      href="http://tools.ietf.org/html/draft-crabbe-pce-stateful-pce-02#section-7.2.2">LSP
17  *      Identifiers TLVs</a>
18  */
19 public final class IPv4ExtendedTunnelIdentifier extends AbstractExtendedTunnelIdentifier<IPv4Address> {
20
21         private static final long serialVersionUID = -8872936514548777175L;
22
23         /**
24          * Creates IPv4ExtendedTunnelIdentifier with given IPv4Address.
25          * @param routerAddress {@link IPv4Address}
26          */
27         public IPv4ExtendedTunnelIdentifier(final IPv4Address routerAddress) {
28                 super(routerAddress);
29         }
30 }