YANG revision dates mass-update
[bgpcep.git] / bgp / extensions / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / spi / EsiSerializer.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 package org.opendaylight.protocol.bgp.evpn.spi;
9
10 import io.netty.buffer.ByteBuf;
11 import org.eclipse.jdt.annotation.NonNullByDefault;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.evpn.rev200120.esi.Esi;
13 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
14
15 @NonNullByDefault
16 public interface EsiSerializer {
17     /**
18      * Serialize Ethernet Segment Identifier.
19      *
20      * @param esi    Ethernet Segment Identifier
21      * @param buffer write in Bytebuf encoded ESI body
22      */
23     void serializeEsi(Esi esi, ByteBuf buffer);
24
25     /**
26      * Serialize Ethernet Segment Identifier Model.
27      *
28      * @param esi Ethernet Segment Identifier Model
29      * @return Ethernet Segment Identifier
30      */
31     Esi serializeEsi(ContainerNode esi);
32 }