BUG-869: remove public modifier
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / BindingCodec.java
index f8bb91b736819ea5a0993d74b473734f70a43d84..a812126336d724542b0b2c47180de2849157a0fa 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);
-    
+    P serialize(I input);
+
     @Override
-    public I deserialize(P input);
+    I deserialize(P input);
+
+    I deserialize(P input, InstanceIdentifier<?> bindingIdentifier);
+
 }