• 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/query/workflow/StageCreateQuery.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
public class StageCreateQuery {
12

13
    @SerializedName(value = "preset_stage_id")
14
    private final String presetStageId;
15

16
    private String name;
17

18
    private String description;
19

20
    @SerializedName(value = "responsibleGroupID")
21
    private String responsibleGroupId;
22

23
    @SerializedName(value = "responsibleID")
24
    private String responsibleId;
25

26
    private String deadline;
27

28
    public StageCreateQuery(String presetStageId) {
×
29
        this.presetStageId = presetStageId;
×
30
    }
×
31

32
    public String getPresetStageId() {
33
        return presetStageId;
×
34
    }
35

36
    public String getName() {
37
        return name;
×
38
    }
39

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

44
    public String getDescription() {
45
        return description;
×
46
    }
47

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

52
    public String getResponsibleGroupId() {
53
        return responsibleGroupId;
×
54
    }
55

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

60
    public String getResponsibleId() {
61
        return responsibleId;
×
62
    }
63

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

68
    public String getDeadline() {
69
        return deadline;
×
70
    }
71

72
    public void setDeadline(String deadline) {
73
        this.deadline = deadline;
×
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