Rename metadata && lookup
This commit is contained in:
		@ -30,11 +30,11 @@ import java.util.Collections;
 | 
				
			|||||||
public class RedisLookupPlugin implements Plugin {
 | 
					public class RedisLookupPlugin implements Plugin {
 | 
				
			||||||
    @Override
 | 
					    @Override
 | 
				
			||||||
    public PluginMetaData metadata() {
 | 
					    public PluginMetaData metadata() {
 | 
				
			||||||
        return new RedisLookupPluginMetaData();
 | 
					        return new RedisLookupMetaData();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Override
 | 
					    @Override
 | 
				
			||||||
    public Collection<PluginModule> modules () {
 | 
					    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');
 | 
					const { loadBuildConfig } = require('graylog-web-plugin');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Remember to use the same name here and in `getUniqueId()` in the java MetaData class
 | 
					// 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.
 | 
					  // Here goes your additional webpack configuration.
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user