Create the Blueprint configuration
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
">
<!-- Define a bean for our new step analyzer -->
<bean id="dummyStepAnalyzer"/>
<!--
Define our analyzer as a service. This will allow it to be automatically added to the reference-list ultimately used
by the TransformationAnalyzer to determine if there is a custom analyzer for a particular BaseStepMeta impl
(DummyTransMeta in this case).
-->
<service id="dummyStepAnalyzerService"
interface="org.pentaho.metaverse.api.analyzer.kettle.step.IStepAnalyzer"
ref="dummyStepAnalyzer"/>
</blueprint>Last updated
Was this helpful?

