all done
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/07788596 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/07788596 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/07788596 Branch: refs/heads/ignite-2977 Commit: 077885969c387d7b3d636d01da3dce93c916c6db Parents: 3bdfcd0 Author: Pavel Tupitsyn <[email protected]> Authored: Tue Apr 12 18:24:13 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Tue Apr 12 18:24:13 2016 +0300 ---------------------------------------------------------------------- .../ignite/platform/PlatformCacheEntryEventFilterFactory.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/07788596/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java b/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java index 747001f..7f15734 100644 --- a/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java +++ b/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java @@ -21,11 +21,13 @@ import org.apache.ignite.cache.CacheEntryEventSerializableFilter; import javax.cache.event.CacheEntryEvent; import javax.cache.event.CacheEntryListenerException; +import java.io.Serializable; /** * Test filter factory */ -public class PlatformCacheEntryEventFilterFactory implements PlatformJavaObjectFactory<CacheEntryEventSerializableFilter> { +public class PlatformCacheEntryEventFilterFactory implements Serializable, + PlatformJavaObjectFactory<CacheEntryEventSerializableFilter> { /** Property to be set from platform. */ @SuppressWarnings("FieldCanBeLocal") private String startsWith = "-";
