Rename metadata && lookup
This commit is contained in:
parent
43d91b9bd1
commit
a984d4800f
@ -30,11 +30,11 @@ import java.util.Collections;
|
||||
public class RedisLookupPlugin implements Plugin {
|
||||
@Override
|
||||
public PluginMetaData metadata() {
|
||||
return new RedisLookupPluginMetaData();
|
||||
return new RedisLookupMetaData();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Collection<PluginModule> modules () {
|
||||
return Collections.<PluginModule>singletonList(new RedisLookupPluginModule());
|
||||
return Collections.<PluginModule>singletonList(new RedisLookupModule());
|
||||
}
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
in.nosd.redis.RedisLookupPluginPlugin
|
||||
in.nosd.redis.RedisLookupPlugin
|
||||
|
@ -19,6 +19,6 @@ const { PluginWebpackConfig } = require('graylog-web-plugin');
|
||||
const { loadBuildConfig } = require('graylog-web-plugin');
|
||||
|
||||
// Remember to use the same name here and in `getUniqueId()` in the java MetaData class
|
||||
module.exports = new PluginWebpackConfig(__dirname, 'in.nosd.redis.RedisLookupPluginPlugin', loadBuildConfig(path.resolve(__dirname, './build.config')), {
|
||||
module.exports = new PluginWebpackConfig(__dirname, 'in.nosd.redis.RedisLookupPlugin', loadBuildConfig(path.resolve(__dirname, './build.config')), {
|
||||
// Here goes your additional webpack configuration.
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user