Added missing record type
This commit is contained in:
parent
008303b939
commit
6b762eab38
|
@ -0,0 +1,17 @@
|
|||
package org.gcube.grsf.publisher.record;
|
||||
|
||||
import org.gcube.com.fasterxml.jackson.databind.JsonNode;
|
||||
import org.gcube.com.fasterxml.jackson.databind.node.TextNode;
|
||||
|
||||
/**
|
||||
* @author Luca Frosini (ISTI - CNR)
|
||||
*/
|
||||
public class TraceabilityUnit extends Record {
|
||||
|
||||
public TraceabilityUnit(JsonNode jsonNode) {
|
||||
super(jsonNode);
|
||||
TextNode textNode = new TextNode("Traceability Unit");
|
||||
addProperty(SOURCE_KEY, textNode);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue