• 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

21.74
/src/main/java/com/bynder/sdk/query/workflow/CampaignDataQuery.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.Map;
12

13
public class CampaignDataQuery {
14

15
        private final String name;
16

17
        private final String key;
18
        
19
        @SerializedName(value = "responsibleID")
20
        private final String responsibleId;
21
        
22
        private String description;
23
        
24
        private String dateStart;
25
        
26
        private String deadline;
27
        
28
        private String closed;
29
        
30
        private Map<String, String> campaignMetaproperties;
31
        
32
        public CampaignDataQuery(String name, String key, String responsibleId) {
1✔
33
                this.name = name;
1✔
34
                this.key = key;
1✔
35
                this.responsibleId = responsibleId;
1✔
36
        }
1✔
37
        
38
        public String getName() {
39
                return name;
×
40
        }
41
        
42
        public String getKey() {
43
                return key;
×
44
        }
45
        
46
        public String getResponsibleId() {
47
                return responsibleId;
×
48
        }
49

50
        public String getDescription() {
51
                return description;
×
52
        }
53

54
        public void setDescription(String description) {
55
                this.description = description;
×
56
        }
×
57

58
        public String getDateStart() {
59
                return dateStart;
×
60
        }
61

62
        public void setDateStart(String dateStart) {
63
                this.dateStart = dateStart;
×
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 String getClosed() {
75
                return closed;
×
76
        }
77

78
        public void setClosed(String closed) {
79
                this.closed = closed;
×
80
        }
×
81

82
        public Map<String, String> getCampaignMetaproperties() {
83
                return campaignMetaproperties;
×
84
        }
85

86
        public void setCampaignMetaproperties(Map<String, String> campaignMetaproperties) {
87
                this.campaignMetaproperties = campaignMetaproperties;
×
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