Deprecate ClassBasedPropertyBuilder
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Serializer.java
index 24ef67c59b09d79af9a39d603bdf939fce7d9f0d..f7a85c00a9222e7d2d0422d93ea630ae94eea836 100644 (file)
@@ -7,6 +7,23 @@
  */
 package org.opendaylight.yangtools.concepts;
 
-public interface Serializer<P,I> {
-    P serialize(I input);
+import org.eclipse.jdt.annotation.NonNull;
+
+/**
+ * An entity which is able to convert some input into a product.
+ *
+ * @param <P> Product type
+ * @param <I> Input type
+ * @param <X> Error exception type
+ */
+public interface Serializer<P, I, X extends Exception> {
+    /**
+     * Convert an input into a product.
+     *
+     * @param input Input
+     * @return A product
+     * @throws NullPointerException if input is null
+     * @throws X when input is not valid
+     */
+    @NonNull P serialize(@NonNull I input) throws X;
 }