VEuPathDB / service-eda-compute

Apache License 2.0
0 stars 0 forks source link

add access to PluginUtil type #33

Closed Foxcapades closed 2 years ago

Foxcapades commented 2 years ago

This PR adds a primary feature and a support feature:

  1. The primary feature is giving access to EdaCommon's PluginUtil class in the compute plugin base class via the getter getUtil().
  2. The secondary feature supporting the primary feature is access to an EdaMergingClient instance via the plugin's given context.
// Primary Feature
plugin.getUtil()

// Secondary Feature
plugin.getContext().getMergingClient()

Resolves #32