Create common parent for extensions families
[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
9 package org.opendaylight.protocol.bgp.evpn.spi;
10
11 import io.netty.buffer.ByteBuf;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.evpn.rev180329.esi.Esi;
14 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
15
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(@Nonnull Esi esi, @Nonnull 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     @Nonnull
32     Esi serializeEsi(@Nonnull ContainerNode esi);
33 }