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