Project

General

Profile

1
package eu.dnetlib.index.action;
2

    
3
/**
4
 * Blackboard actions.
5
 *
6
 * @author claudio
7
 */
8
public enum IndexAction {
9

    
10
	CREATE,
11
	/**
12
	 * Action to feed an index.
13
	 */
14
	FEED,
15
	/**
16
	 * Action to delete an index.
17
	 */
18
	DELETE,
19
	/**
20
	 * Action to delete a subset of documents.
21
	 */
22
	DELETE_BY_QUERY,
23
	/**
24
	 * Action to identify the index service.
25
	 */
26
	IDENTIFY
27
}
(8-8/8)