• 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

50.0
/src/main/java/com/bynder/sdk/query/workflow/WorkflowGroupDataQuery.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.ArrayList;
12
import java.util.List;
13

14
public class WorkflowGroupDataQuery {
15

16
    private final String name;
17

18
    @SerializedName(value = "user_ids")
19
    private List<String> userIds;
20

21
    public WorkflowGroupDataQuery(String name) {
1✔
22
        this.name = name;
1✔
23
        this.userIds = new ArrayList<>();
1✔
24
    }
1✔
25

26
    public String getName() {
27
        return name;
×
28
    }
29

30
    public List<String> getUserIds() {
31
        return userIds;
×
32
    }
33

34
    public void setUserIds(List<String> userIds) {
35
        this.userIds = userIds;
×
36
    }
×
37
}
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