YANG revision dates mass-update
[bgpcep.git] / bgp / extensions / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / spi / EvpnSerializer.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.evpn.EvpnChoice;
13 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
14
15 @NonNullByDefault
16 public interface EvpnSerializer {
17     /**
18      * Serialize Evpn.
19      *
20      * @param evpn   Evpn
21      * @param buffer Encode common Evpn parts to output buffer
22      * @return Encode Evpn to output buffer
23      */
24     ByteBuf serializeEvpn(EvpnChoice evpn, ByteBuf buffer);
25
26     /**
27      * Serialize Evpn Model.
28      *
29      * @param evpn ChoiceNode containing Evpn
30      * @return Evpn
31      */
32     EvpnChoice serializeEvpnModel(ContainerNode evpn);
33
34     /**
35      * create Route key from Evpn model.
36      *
37      * @param evpn ContainerNode containing Evpn
38      * @return Evpn
39      */
40     EvpnChoice createRouteKey(ContainerNode evpn);
41 }