Hi,
It works for me (I've my own SecurityPlugin) ...
....
[2015-08-26
18:10:25,016][DEBUG][ro.myset.appcore.grid.plugins.security.SecurityPluginProvider:99:plugin]
-
[18:10:25] Configured plugins:
[18:10:25] ^-- SecurityPlugin 1.0
[18:10:25] ^-- MYSET SOLUTIONS S.R.L.
...
Steps
1. Add a plain text file to META-INF/services/ with filename
org.apache.ignite.plugin.PluginProvider
META-INF/services/org.apache.ignite.plugin.PluginProvider
2. Add following text (your canonical class name without .java) into
META-INF/services/org.apache.ignite.plugin.PluginProvider
org.apache.ignite.examples.computegrid.cluster.WhiteListPluginProvider
3. You shoud create your own classes like this:
public class WhiteListPluginConfiguration implements
PluginConfiguration
...
public class WhiteListPluginProvider implements
PluginProvider<WhiteListPluginConfiguration>
...
and the rest
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Ignite-Plugin-development-tp336p1137.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.