package eu.dnetlib.actionmanager.blackboard;

import javax.annotation.Resource;

import eu.dnetlib.actionmanager.hbase.HBaseActionManagerCore;
import eu.dnetlib.actionmanager.wf.ActionManagerWorkflowLauncher;

public class AbstractActionManagerAction {

	@Resource
	protected HBaseActionManagerCore core;

	@Resource
	private ActionManagerWorkflowLauncher actionManagerWorkflowLauncher;

	public HBaseActionManagerCore getCore() {
		return core;
	}

	public void setCore(HBaseActionManagerCore core) {
		this.core = core;
	}

	public ActionManagerWorkflowLauncher getActionManagerWorkflowLauncher() {
		return actionManagerWorkflowLauncher;
	}

	public void setActionManagerWorkflowLauncher(ActionManagerWorkflowLauncher actionManagerWorkflowLauncher) {
		this.actionManagerWorkflowLauncher = actionManagerWorkflowLauncher;
	}

}
