6d66fd3fdf6b5753d4cf0e4261fcab9cc9bac8ce
[bgpcep.git] / rsvp / impl / src / main / java / org / opendaylight / protocol / rsvp / parser / impl / te / AssociationObjectParserIPV6.java
1 /*
2  * Copyright (c) 2015 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.rsvp.parser.impl.te;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.protocol.util.Ipv6Util;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone;
13
14 public final class AssociationObjectParserIPV6 extends AbstractAssociationParser {
15     @Override
16     protected IpAddressNoZone parseAssociationIpAddress(final ByteBuf byteBuf) {
17         return new IpAddressNoZone(Ipv6Util.noZoneAddressForByteBuf(byteBuf));
18     }
19 }