• 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/WorkflowGroup.java
1
/*
2
 * Copyright (c) 2017 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

13
public class WorkflowGroup {
×
14

15
    @SerializedName(value = "ID")
16
    private String id;
17

18
    private String name;
19

20
    @SerializedName(value = "createdByID")
21
    private String createdById;
22

23
    private String dateCreated;
24

25
    @SerializedName(value = "accountID")
26
    private String accountId;
27

28
    private List<WorkflowUser> users;
29

30
    public String getId() {
31
        return id;
×
32
    }
33

34
    public String getName() {
35
        return name;
×
36
    }
37

38
    public String getCreatedById() {
39
        return createdById;
×
40
    }
41

42
    public String getDateCreated() {
43
        return dateCreated;
×
44
    }
45

46
    public String getAccountId() {
47
        return accountId;
×
48
    }
49

50
    public List<WorkflowUser> getUsers() {
51
        return users;
×
52
    }
53
}
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