Migrate mdsal-binding-dom-codec to JDT annotations
[mdsal.git] / binding / mdsal-binding-dom-codec / src / main / java / org / opendaylight / mdsal / binding / dom / codec / api / BindingNormalizedNodeCodec.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.mdsal.binding.dom.codec.api;
9
10 import com.google.common.annotations.Beta;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.binding.DataObject;
13 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
14
15 /**
16  * Codec providing serialization and deserializiation between Binding
17  * and NormalizedNode representation of data.
18  *
19  * @param <T> Binding representation of data
20  */
21 @Beta
22 public interface BindingNormalizedNodeCodec<T extends DataObject> {
23
24     /**
25      * Converts from Normalized Node to Binding representation of data.
26      *
27      * @param data Normalized Node representation of data
28      * @return Binding representation of data
29      */
30     @NonNull T deserialize(@NonNull NormalizedNode<?,?> data);
31
32     /**
33      * Converts from  Binding to Normalized Node representation of data.
34      *
35      * @param data Binding representation of data
36      * @return Normalized Node representation of data
37      */
38     @NonNull NormalizedNode<?,?> serialize(@NonNull T data);
39 }