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

Bynder / bynder-java-sdk / 4023021486

pending completion
4023021486

push

Github

GitHub
Implementation of Workflow API (#100)

* Removed git excl. file

* First implementation of full Workflow functionality

* Final workflow implementation, tested and ready

* Update src/main/java/com/bynder/sdk/service/BynderClientImpl.java

* Update src/main/java/com/bynder/sdk/service/BynderClient.java

* format WorkflowService

Co-authored-by: Alfredo Navarro <alfredo.navarro@redbull.com>
Co-authored-by: Arpit Sharma <32858287+Arpit-Sharma-USC@users.noreply.github.com>
Co-authored-by: Arpit-Sharma-USC <arpitshrm07@gmail.com>

378 of 378 new or added lines in 35 files covered. (100.0%)

696 of 1479 relevant lines covered (47.06%)

0.47 hits per line

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

0.0
/src/main/java/com/bynder/sdk/model/workflow/Job.java
1
/*
2
 * Copyright (c) 2019 Bynder B.V. All rights reserved.
3
 *
4
 * Licensed under the MIT License. See LICENSE file in the project root for full license
5
 * information.
6
 */
7
package com.bynder.sdk.model.workflow;
8

9
import com.google.gson.annotations.SerializedName;
10

11
import java.util.List;
12
import java.util.Map;
13

14
public class Job {
×
15

16
    private String id;
17

18
    private String name;
19

20
    private String deadline;
21

22
    private String description;
23

24
    private String dateCreated;
25

26
    private Boolean basedOnPreset;
27

28
    @SerializedName(value = "presetID")
29
    private String presetId;
30

31
    private String dateModified;
32

33
    @SerializedName(value = "campaignID")
34
    private String campaignId;
35

36
    @SerializedName(value = "accountableID")
37
    private String accountableId;
38

39
    @SerializedName(value = "createdByID")
40
    private String createdById;
41

42
    private Map<String, String> jobMetaproperties;
43

44
    @SerializedName(value = "job_previous_stage")
45
    private Stage previousStage;
46

47
    @SerializedName(value = "job_active_stage")
48
    private Stage activeStage;
49

50
    @SerializedName(value = "job_next_stage")
51
    private Stage nextStage;
52

53
    @SerializedName(value = "job_stages")
54
    private List<Stage> stages;
55

56
    public String getId() {
57
        return id;
×
58
    }
59

60
    public String getName() {
61
        return name;
×
62
    }
63

64
    public String getDeadline() {
65
        return deadline;
×
66
    }
67

68
    public String getDescription() {
69
        return description;
×
70
    }
71

72
    public String getDateCreated() {
73
        return dateCreated;
×
74
    }
75

76
    public Boolean getBasedOnPreset() {
77
        return basedOnPreset;
×
78
    }
79

80
    public String getPresetId() {
81
        return presetId;
×
82
    }
83

84
    public String getDateModified() {
85
        return dateModified;
×
86
    }
87

88
    public String getCampaignId() {
89
        return campaignId;
×
90
    }
91

92
    public String getAccountableId() {
93
        return accountableId;
×
94
    }
95

96
    public String getCreatedById() {
97
        return createdById;
×
98
    }
99

100
    public Map<String, String> getJobMetaproperties() {
101
        return jobMetaproperties;
×
102
    }
103

104
    public Stage getPreviousStage() {
105
        return previousStage;
×
106
    }
107

108
    public Stage getActiveStage() {
109
        return activeStage;
×
110
    }
111

112
    public Stage getNextStage() {
113
        return nextStage;
×
114
    }
115

116
    public List<Stage> getStages() {
117
        return stages;
×
118
    }
119
}
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