• 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

27.27
/src/main/java/com/bynder/sdk/query/workflow/JobCreateQuery.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.query.workflow;
8

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

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

14
public class JobCreateQuery {
15

16
    private final String name;
17

18
    private String description;
19

20
    private String deadline;
21

22
    @SerializedName(value = "campaignID")
23
    private final String campaignID;
24

25
    @SerializedName(value = "accountableID")
26
    private final String accountableId;
27

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

31
    private Map<String, String> jobMetaproperties;
32

33
    private List<StageCreateQuery> stages;
34

35
    public JobCreateQuery(String name, String campaignId, String accountableId, String presetId) {
1✔
36
        this.name = name;
1✔
37
        this.campaignID = campaignId;
1✔
38
        this.accountableId = accountableId;
1✔
39
        this.presetId = presetId;
1✔
40
    }
1✔
41

42
    public String getName() {
43
        return name;
×
44
    }
45

46
    public String getCampaignID() {
47
        return campaignID;
×
48
    }
49

50
    public String getAccountableId() {
51
        return accountableId;
×
52
    }
53

54
    public String getPresetId() {
55
        return presetId;
×
56
    }
57

58
    public String getDescription() {
59
        return description;
×
60
    }
61

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

66
    public String getDeadline() {
67
        return deadline;
×
68
    }
69

70
    public void setDeadline(String deadline) {
71
        this.deadline = deadline;
×
72
    }
×
73

74
    public Map<String, String> getJobMetaproperties() {
75
        return jobMetaproperties;
×
76
    }
77

78
    public void setJobMetaproperties(Map<String, String> jobMetaproperties) {
79
        this.jobMetaproperties = jobMetaproperties;
×
80
    }
×
81

82
    public List<StageCreateQuery> getStages() {
83
        return stages;
×
84
    }
85

86
    public void setStages(List<StageCreateQuery> stages) {
87
        this.stages = stages;
×
88
    }
×
89
}
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