dhp-graph-dump/dump-schema/src/main/java/eu/dnetlib/dhp/skgif/model/Provenance.java

30 lines
436 B
Java
Raw Normal View History

2024-02-20 09:57:33 +01:00
2023-09-18 08:59:02 +02:00
package eu.dnetlib.dhp.skgif.model;
import java.io.Serializable;
/**
* @author miriam.baglioni
* @Date 01/09/23
*/
public class Provenance implements Serializable {
2024-02-20 09:57:33 +01:00
private String type;
private double trust;
2023-09-18 08:59:02 +02:00
2024-02-20 09:57:33 +01:00
public String getType() {
return type;
}
2023-09-18 08:59:02 +02:00
2024-02-20 09:57:33 +01:00
public void setType(String type) {
this.type = type;
}
2023-09-18 08:59:02 +02:00
2024-02-20 09:57:33 +01:00
public double getTrust() {
return trust;
}
2023-09-18 08:59:02 +02:00
2024-02-20 09:57:33 +01:00
public void setTrust(double trust) {
this.trust = trust;
}
2023-09-18 08:59:02 +02:00
}