Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-dom-codec / src / main / java / org / opendaylight / mdsal / binding / javav2 / dom / codec / api / BindingNormalizedNodeCodec.java
diff --git a/binding2/mdsal-binding2-dom-codec/src/main/java/org/opendaylight/mdsal/binding/javav2/dom/codec/api/BindingNormalizedNodeCodec.java b/binding2/mdsal-binding2-dom-codec/src/main/java/org/opendaylight/mdsal/binding/javav2/dom/codec/api/BindingNormalizedNodeCodec.java
deleted file mode 100644 (file)
index b8c7e75..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.mdsal.binding.javav2.dom.codec.api;
-
-import com.google.common.annotations.Beta;
-import javax.annotation.Nonnull;
-import org.opendaylight.mdsal.binding.javav2.spec.base.TreeNode;
-import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
-
-/**
- * Codec providing serialization and deserializiation between Binding and
- * NormalizedNode representation of data.
- *
- *
- * @param <T>
- *            - Binding representation of data
- */
-@Beta
-public interface BindingNormalizedNodeCodec<T extends TreeNode> {
-
-    /**
-     * Converts from Normalized Node to Binding representation of data.
-     *
-     * @param data
-     *            - Normalized Node representation of data
-     * @return Binding representation of data
-     */
-    @Nonnull
-    T deserialize(@Nonnull NormalizedNode<?, ?> data);
-
-    /**
-     * Converts from Binding to Normalized Node representation of data.
-     *
-     * @param data
-     *            - Binding representation of data
-     * @return Normalized Node representation of data
-     */
-    @Nonnull
-    NormalizedNode<?, ?> serialize(@Nonnull T data);
-}
\ No newline at end of file