Project

General

Profile

1 35288 antonis.le
package eu.dnetlib.goldoa.service;
2
3 35468 antonis.le
import eu.dnetlib.goldoa.domain.Publisher;
4
5 35288 antonis.le
/**
6
 * Created by antleb on 3/11/15.
7
 */
8
public interface PublisherManager extends Searchable {
9 35468 antonis.le
10 39076 antonis.le
	public Publisher getPublisher(String publisherId);
11 35468 antonis.le
12 39076 antonis.le
	public Publisher savePublisher(Publisher publisher);
13 35288 antonis.le
}