Project

General

Profile

1
package eu.dnetlib.parthenos.catalogue;
2

    
3
import java.io.IOException;
4

    
5
import eu.dnetlib.parthenos.jrr.JRRClient;
6
import eu.dnetlib.parthenos.publisher.ParthenosPublisherException;
7
import eu.dnetlib.parthenos.publisher.SaxonHelper;
8

    
9
/**
10
 * Created by Alessia Bardi on 21/11/2017.
11
 *
12
 * @author Alessia Bardi
13
 */
14
@Deprecated
15
public class CatalogueClient extends JRRClient{
16

    
17
	private CatalogueRegistrator catalogueRegistrator;
18

    
19
	@Override
20
	protected void doRegister(final String recordRDF, final String objIdentifier) throws IOException, ParthenosPublisherException {
21
		//this.catalogueRegistrator.register(recordRDF, objIdentifier);
22
	}
23

    
24
	public CatalogueClient(final SaxonHelper saxonHelper, final CatalogueRegistrator catalogueRegistrator ) throws ParthenosPublisherException {
25
		super(saxonHelper);
26
		this.catalogueRegistrator = catalogueRegistrator;
27
	}
28

    
29
}
(3-3/5)