Merge changes Id68de4e3,Id4b3c97f
[yangtools.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / BindingCodec.java
index f8bb91b736819ea5a0993d74b473734f70a43d84..00c14594eef1b0988679d75a9fc7b40a7533fa80 100644 (file)
@@ -1,10 +1,22 @@
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. 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.yangtools.yang.binding;
 
-public interface BindingCodec<P,I>  extends BindingSerializer<P, I>, BindingDeserializer<I, P> {
+import org.opendaylight.yangtools.concepts.Codec;
+
+public interface BindingCodec<P, I> extends //
+        BindingSerializer<P, I>, //
+        BindingDeserializer<I, P>, //
+        Codec<P, I> {
 
     @Override
     public P serialize(I input);
-    
+
     @Override
     public I deserialize(P input);
 }