Project

General

Profile

1 34973 antonis.le
package eu.dnetlib.goldoa.service;
2
3 35043 antonis.le
import eu.dnetlib.goldoa.domain.Vocabulary;
4
5
import java.io.Serializable;
6 34973 antonis.le
import java.util.List;
7
8
/**
9
 * Created by antleb on 3/3/15.
10
 */
11
public interface SearchManager {
12
13 35043 antonis.le
	public enum TYPE implements Serializable {
14 37018 antonis.le
		PROJECT, ORGANISATION, JOURNAL, PUBLISHER, FUNDER;
15 34973 antonis.le
	}
16
17
	public List<Vocabulary> search(TYPE type, String term);
18
}