1 package de.dlr.shepard.common.search.io;
2
3 import lombok.AllArgsConstructor;
4 import lombok.Data;
5 import lombok.NoArgsConstructor;
6
7 @Data
8 @AllArgsConstructor
9 @NoArgsConstructor
10 public class ResultTriple {
11
12 private Long collectionId;
13 private Long dataObjectId;
14 private Long referenceId;
15
16 public ResultTriple(Long collectionId) {
17 this.collectionId = collectionId;
18 }
19
20 public ResultTriple(Long collectionId, Long dataObjectId) {
21 this.collectionId = collectionId;
22 this.dataObjectId = dataObjectId;
23 }
24 }