package eu.dnetlib.dhp.bulktag.community; import java.io.Serializable; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.dom4j.Node; import com.google.gson.Gson; import eu.dnetlib.dhp.bulktag.criteria.VerbResolver; /** Created by miriam on 01/08/2018. */ public class Provider implements Serializable { private static final Log log = LogFactory.getLog(Provider.class); private String openaireId; private SelectionConstraints selectionConstraints; public SelectionConstraints getSelectionConstraints() { return selectionConstraints; } public void setSelectionConstraints(SelectionConstraints selectionConstraints) { this.selectionConstraints = selectionConstraints; } public String getOpenaireId() { return openaireId; } public void setOpenaireId(String openaireId) { this.openaireId = openaireId; } private void setSelCriteria(String json, VerbResolver resolver) { log.debug("Selection constraints for datasource = " + json); selectionConstraints = new Gson().fromJson(json, SelectionConstraints.class); selectionConstraints.setSelection(resolver); } public void setSelCriteria(Node n, VerbResolver resolver) { try { setSelCriteria(n.getText(), resolver); } catch (Exception e) { log.debug("not set selection criteria... "); selectionConstraints = null; } } }