Deprecate concents.{Codec,Deserializer,Serializer}
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Codec.java
index 91060a1b6663eeea1972a047fde24748333b5388..55514f1d556dee88bcfbd8594378a90005eea64d 100644 (file)
@@ -15,6 +15,7 @@ package org.opendaylight.yangtools.concepts;
  * @param <I> Input type
  * @param <X> Error exception type
  */
+@Deprecated(since = "7.0.9", forRemoval = true)
 public interface Codec<P, I, X extends Exception> extends Serializer<P, I, X>, Deserializer<I, P, X> {
     @Override
     I deserialize(P input) throws X;