Project

General

Profile

1 34973 antonis.le
package eu.dnetlib.goldoa.service;
2
3 47598 antonis.le
import com.google.gwt.user.client.rpc.IsSerializable;
4 35043 antonis.le
5 34973 antonis.le
import java.util.List;
6
7
/**
8
 * Created by antleb on 3/3/15.
9
 */
10
public interface SearchManager {
11
12 47598 antonis.le
	public enum TYPE implements IsSerializable {
13 37018 antonis.le
		PROJECT, ORGANISATION, JOURNAL, PUBLISHER, FUNDER;
14 34973 antonis.le
	}
15
16 46422 panagiotis
	public List<Object> search(TYPE type, String term);
17 34973 antonis.le
}