X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Futils%2FStatus.java;h=a7a44456cc3011ec6e1957395f65dbcf2fccd9af;hb=6e28a7e7bb41088e8a7492523e61ed7b90bff4c2;hp=1d7ce224b5620f438947eeb29139309cd865b7f2;hpb=bdd074c8d8b63a19bf5ae3afe9f051da04f0086c;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/utils/Status.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/utils/Status.java index 1d7ce224b5..a7a44456cc 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/utils/Status.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/utils/Status.java @@ -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;