Project

General

Profile

1
package eu.dnetlib.functionality.index.action;
2

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

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