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

IQSS / dataverse / #23237

23 Sep 2024 03:40PM UTC coverage: 20.657%. First build
#23237

Pull #10781

github

pdurbin
Merge branch 'develop' into 10623-globus-improvements #10623
Pull Request #10781: Improved handling of Globus uploads

4 of 417 new or added lines in 15 files covered. (0.96%)

17604 of 85219 relevant lines covered (20.66%)

0.21 hits per line

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

0.0
/src/main/java/edu/harvard/iq/dataverse/globus/GlobusTaskState.java
1
package edu.harvard.iq.dataverse.globus;
2

3
/**
4
 * This class is used to store the state of an ongoing Globus task (transfer)
5
 * as reported by the Globus task API.
6
 */
NEW
7
public class GlobusTaskState {
×
8

9
    private String DATA_TYPE;
10
    private String type;
11
    private String status;
12
    private String owner_id;
13
    private String request_time;
14
    private String task_id;
15
    private String destination_endpoint_display_name;
16
    private boolean skip_source_errors;
17
    private String nice_status;
18
    private String nice_status_short_description;
19

20
    public String getDestination_endpoint_display_name() {
21
        return destination_endpoint_display_name;
×
22
    }
23

24
    public void setDestination_endpoint_display_name(String destination_endpoint_display_name) {
25
        this.destination_endpoint_display_name = destination_endpoint_display_name;
×
26
    }
×
27

28
    public void setRequest_time(String request_time) {
29
        this.request_time = request_time;
×
30
    }
×
31

32
    public String getRequest_time() {
33
        return request_time;
×
34
    }
35

36
    public String getTask_id() {
37
        return task_id;
×
38
    }
39

40
    public void setTask_id(String task_id) {
41
        this.task_id = task_id;
×
42
    }
×
43

44
    public String getDATA_TYPE() {
45
        return DATA_TYPE;
×
46
    }
47

48
    public void setDATA_TYPE(String DATA_TYPE) {
49
        this.DATA_TYPE = DATA_TYPE;
×
50
    }
×
51

52
    public String getType() {
53
        return type;
×
54
    }
55

56
    public void setType(String type) {
57
        this.type = type;
×
58
    }
×
59

60
    public String getStatus() {
61
        return status;
×
62
    }
63

64
    public void setStatus(String status) {
65
        this.status = status;
×
66
    }
×
67

68
    public String getOwner_id() {
69
        return owner_id;
×
70
    }
71

72
    public void setOwner_id(String owner_id) {
73
        this.owner_id = owner_id;
×
74
    }
×
75

76
    public Boolean getSkip_source_errors() {
77
        return skip_source_errors;
×
78
    }
79

80
    public void setSkip_source_errors(Boolean skip_source_errors) {
81
        this.skip_source_errors = skip_source_errors;
×
82
    }
×
83

84
    public String getNice_status() {
85
        return nice_status;
×
86
    }
87

88
    public void setNice_status(String nice_status) {
89
        this.nice_status = nice_status;
×
90
    }
×
91

92
    public String getNice_status_short_description() {
93
        return nice_status_short_description;
×
94
    }
95

96
}
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

© 2025 Coveralls, Inc