Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.data.information.collectionservice.rmi;
2
3
import java.util.List;
4
5
import javax.jws.WebParam;
6
import javax.jws.WebService;
7
8
import eu.dnetlib.common.rmi.BaseService;
9
10
/**
11
 * The Collection Service is used to ...
12
 *
13
 *
14
 */
15
16
@WebService(targetNamespace = "http://services.dnetlib.eu/")
17
public interface CollectionService extends BaseService {
18
19
	public String getCollection(@WebParam(name = "collId") final String collId) throws CollectionServiceException;
20
21
	public List<String> getCollections(@WebParam(name = "collIds") final List<String> collIds) throws CollectionServiceException;
22
23
	public void updateCollection(@WebParam(name = "coll") final String coll) throws CollectionServiceException;
24
25
	public void deleteCollection(@WebParam(name = "collId") final String collId) throws CollectionServiceException;
26
27
	public String createCollection(@WebParam(name = "coll") final String coll) throws CollectionServiceException;
28
}