1 package de.dlr.shepard.neo4Core.entities; 2 3 import lombok.Data; 4 import lombok.EqualsAndHashCode; 5 import lombok.NoArgsConstructor; 6 import org.neo4j.ogm.annotation.NodeEntity; 7 8 @NodeEntity 9 @Data 10 @NoArgsConstructor 11 @EqualsAndHashCode(callSuper = true) 12 public class TimeseriesContainer extends BasicContainer { 13 14 private String database; 15 16 /** 17 * For testing purposes only 18 * 19 * @param id identifies the entity 20 */ 21 public TimeseriesContainer(long id) { 22 super(id); 23 } 24 }