forked from D-Net/dnet-hadoop
removed entities added for the pid graph dump
This commit is contained in:
parent
e9d948786d
commit
f45c23316f
|
@ -1,23 +0,0 @@
|
|||
|
||||
package eu.dnetlib.dhp.schema.dump.pidgraph;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Entity implements Serializable {
|
||||
private String id;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public static Entity newInstance(String id) {
|
||||
Entity entity = new Entity();
|
||||
entity.id = id;
|
||||
|
||||
return entity;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue