FRM event sync developement
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / Status.java
index 1d7ce224b5620f438947eeb29139309cd865b7f2..a7a44456cc3011ec6e1957395f65dbcf2fccd9af 100644 (file)
@@ -8,12 +8,14 @@
 
 package org.opendaylight.controller.sal.utils;
 
+import java.io.Serializable;
+
 /**
  * Represents the return object of the osgi service interfaces function calls.
  * It contains a code {@code StatusCode} representing the result of the call and
  * a string which describes a failure reason (if any) in human readable form.
  */
-public class Status {
+public class Status implements Serializable {
     private StatusCode code;
     private String description;
     private long requestId;