com.bytex.snamp.connector.dataStream.groovy.GroovyNotificationParserLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-stream Show documentation
Show all versions of data-stream Show documentation
Framework for writing connectors based on message processing
The newest version!
package com.bytex.snamp.connector.dataStream.groovy;
import com.bytex.snamp.connector.dataStream.DataStreamConnector;
import com.bytex.snamp.scripting.groovy.OSGiGroovyScriptEngine;
import com.google.common.collect.ObjectArrays;
import java.io.IOException;
import java.net.URL;
import java.util.Map;
import java.util.Properties;
import static com.bytex.snamp.MapUtils.toProperties;
/**
* Represents loader of notification parsers written in Groovy language.
* @author Roman Sakno
* @version 2.0
* @since 2.0
*/
public final class GroovyNotificationParserLoader extends OSGiGroovyScriptEngine {
//constructor for tests
GroovyNotificationParserLoader(final ClassLoader classLoader,
final URL... paths) {
super(classLoader, new Properties(), GroovyNotificationParser.class, paths);
}
public GroovyNotificationParserLoader(final DataStreamConnector connector,
final Map connectionParams,
final boolean includeClassLoaderResources,
final URL... paths) {
super(connector.getClass().getClassLoader(),
toProperties(connectionParams),
GroovyNotificationParser.class,
includeClassLoaderResources ? ObjectArrays.concat(paths, connector.getClass().getResource("")) : paths);
}
public GroovyNotificationParserLoader(final DataStreamConnector connector,
final Map connectionParams) throws IOException {
this(connector, connectionParams, true);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy