Project

General

Profile

1
package eu.dnetlib.client.widgets;
2

    
3
import com.google.gwt.user.client.rpc.RemoteService;
4
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
5
import eu.dnetlib.goldoa.domain.Vocabulary;
6

    
7
import java.util.List;
8

    
9
/**
10
 * Created by stefania on 3/2/15.
11
 */
12
@RemoteServiceRelativePath("autoComplete")
13
public interface AutoCompleteService extends RemoteService {
14

    
15
    public List<Vocabulary> getAutoCompleteVocabulary(String type, String matchString);
16
}
(4-4/21)