package eu.dnetlib.functionality.index.solr;

/**
 * Blackboard actions.
 * 
 * @author claudio
 *
 */
public enum Action {

	/**
	 * Action to perform an index creation.
	 */
	CREATE,
	/**
	 * Action to feed an index.
	 */
	FEED,
	/**
	 * Action to delete an index.
	 */
	DELETE,
	/**
	 * Action to perform an index merge.
	 */
	TRANSFORM,
	/**
	 * Action to identify the index service.
	 */
	IDENTIFY
}
