You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by re...@apache.org on 2014/12/02 07:30:43 UTC

stratos git commit: fixing Serializable issue

Repository: stratos
Updated Branches:
  refs/heads/master db533ddf3 -> 541452b04


fixing Serializable issue


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/541452b0
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/541452b0
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/541452b0

Branch: refs/heads/master
Commit: 541452b04f03f208f1e755576bd9f817c5fc0ed8
Parents: db533dd
Author: reka <rt...@gmail.com>
Authored: Tue Dec 2 11:55:48 2014 +0530
Committer: reka <rt...@gmail.com>
Committed: Tue Dec 2 11:56:01 2014 +0530

----------------------------------------------------------------------
 .../stratos/common/clustering/DistributedObjectProvider.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/541452b0/components/org.apache.stratos.common/src/main/java/org/apache/stratos/common/clustering/DistributedObjectProvider.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.common/src/main/java/org/apache/stratos/common/clustering/DistributedObjectProvider.java b/components/org.apache.stratos.common/src/main/java/org/apache/stratos/common/clustering/DistributedObjectProvider.java
index c9fa5ec..2fd471b 100644
--- a/components/org.apache.stratos.common/src/main/java/org/apache/stratos/common/clustering/DistributedObjectProvider.java
+++ b/components/org.apache.stratos.common/src/main/java/org/apache/stratos/common/clustering/DistributedObjectProvider.java
@@ -19,13 +19,14 @@
 
 package org.apache.stratos.common.clustering;
 
+import java.io.Serializable;
 import java.util.List;
 import java.util.Map;
 
 /**
  * Distributed object provider service interface.
  */
-public interface DistributedObjectProvider {
+public interface DistributedObjectProvider extends Serializable {
     Map getMap(String key);
 
     List getList(String name);