YANG revision dates mass-update
[bgpcep.git] / bgp / extensions / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / spi / EsiRegistry.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.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.evpn.rev200120.esi.Esi;
14 import org.opendaylight.yangtools.yang.data.api.schema.ChoiceNode;
15
16 @NonNullByDefault
17 public interface EsiRegistry {
18     /**
19      * Parse Esi.
20      *
21      * @param buffer encoded ESI body in Bytebuf
22      * @return Ethernet Segment Identifier
23      */
24     @Nullable Esi parseEsi(ByteBuf buffer);
25
26     /**
27      * Parse Esi Model.
28      *
29      * @param esi ChoiceNode containing ESI
30      * @return Ethernet Segment Identifier
31      */
32     @Nullable Esi parseEsiModel(ChoiceNode esi);
33
34     /**
35      * Serialize Esi.
36      *
37      * @param esi    Ethernet Segment Identifier
38      * @param buffer write in Bytebuf encoded ESI body
39      */
40     void serializeEsi(Esi esi, ByteBuf buffer);
41 }