• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DataBiosphere / consent / #5390

21 Oct 2024 02:35PM UTC coverage: 78.466%. Remained the same
#5390

push

web-flow
[DCJ-702] Switch to datasetId everywhere (#2411)

61 of 85 new or added lines in 26 files covered. (71.76%)

2 existing lines in 2 files now uncovered.

9864 of 12571 relevant lines covered (78.47%)

0.78 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/org/broadinstitute/consent/http/models/DataRequest.java
1
package org.broadinstitute.consent.http.models;
2

3
import com.fasterxml.jackson.annotation.JsonProperty;
4

5
public class DataRequest {
6

7
  @JsonProperty
8
  private Integer requestId;
9

10
  @JsonProperty
11
  private Integer purposeId;
12

13
  @JsonProperty
14
  private String description;
15

16
  @JsonProperty
17
  private String researcher;
18

19
  @JsonProperty
20
  private Integer datasetId;
21

22
  public DataRequest() {
×
23
  }
×
24

25
  public DataRequest(Integer requestId, Integer purposeId, String description, String researcher,
NEW
26
      Integer datasetId) {
×
27
    this.requestId = requestId;
×
28
    this.purposeId = purposeId;
×
29
    this.description = description;
×
30
    this.researcher = researcher;
×
NEW
31
    this.datasetId = datasetId;
×
32
  }
×
33

34
  public Integer getRequestId() {
35
    return requestId;
×
36
  }
37

38
  public void setRequestId(Integer requestId) {
39
    this.requestId = requestId;
×
40
  }
×
41

42
  public Integer getPurposeId() {
43
    return purposeId;
×
44
  }
45

46
  public void setPurposeId(Integer purposeId) {
47
    this.purposeId = purposeId;
×
48
  }
×
49

50
  public String getDescription() {
51
    return description;
×
52
  }
53

54
  public void setDescription(String description) {
55
    this.description = description;
×
56
  }
×
57

58
  public String getResearcher() {
59
    return researcher;
×
60
  }
61

62
  public void setResearcher(String researcher) {
63
    this.researcher = researcher;
×
64
  }
×
65

66
  public Integer getDatasetId() {
NEW
67
    return datasetId;
×
68
  }
69

70
  public void setDatasetId(Integer datasetId) {
NEW
71
    this.datasetId = datasetId;
×
UNCOV
72
  }
×
73

74

75
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc