wip
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/21eb103e Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/21eb103e Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/21eb103e Branch: refs/heads/ignite-2977 Commit: 21eb103e722fa474c44588f1bb21c92573f181b1 Parents: 2940141 Author: Pavel Tupitsyn <[email protected]> Authored: Tue Apr 12 18:19:16 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Tue Apr 12 18:19:16 2016 +0300 ---------------------------------------------------------------------- .../PlatformCacheEntryEventFilterFactory.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/21eb103e/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 new file mode 100644 index 0000000..83d13c1 --- /dev/null +++ b/modules/core/src/test/java/org/apache/ignite/platform/PlatformCacheEntryEventFilterFactory.java @@ -0,0 +1,17 @@ +package org.apache.ignite.platform; + +import org.apache.ignite.cache.CacheEntryEventSerializableFilter; + +/** + * Test filter factory + */ +public class PlatformCacheEntryEventFilterFactory implements PlatformJavaObjectFactory<CacheEntryEventSerializableFilter> { + /** Property to be set from platform. */ + @SuppressWarnings("FieldCanBeLocal") + private String startsWith = "-"; + + /** {@inheritDoc} */ + @Override public CacheEntryEventSerializableFilter create() { + return null; + } +}
