// Objects that should be pass to the Destroyer execution
PrefixContext subContext = new PrefixContext(configuration, JobConstants.PREFIX_CONNECTOR_CONTEXT);
Object configConnection = ConfigurationUtils.getConnectorConnection(configuration);
Object configJob = ConfigurationUtils.getConnectorJob(configuration);
DestroyerContext destroyerContext = new DestroyerContext(subContext, success);
LOG.info("Executing destroyer class " + destroyer.getClass());
destroyer.destroy(destroyerContext, configConnection, configJob);
}