Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Extending the generator by providing additional sources of data

There is an easy mechanism for extending the test message generator so that it can get data from other sources: the org.eclipse.soc.ohftest plugin defines an extension point called batchDataSources. In order to extend this extension point, a user needs to create a class which implements the IBatchDataSource interface, and a factory class for this data source (a class that implements the IBatchDataSourceFactory), which needs to be referenced in the plugin.xml file of the plugin that will be providing the extension.

Back to the top