• 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/User.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;
8

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

11
/**
12
 * This represents a Bynder User
13
 */
14
public class User {
×
15

16
    /**
17
     * Id of the user logged in.
18
     */
19
    private String userId;
20
    /**
21
     * Token key returned by API.
22
     */
23
    private String tokenKey;
24
    /**
25
     * Token secret returned by API.
26
     */
27
    private String tokenSecret;
28
    /**
29
     * True if access was given to the username/password pair.
30
     */
31
    @SerializedName(value = "access")
32
    private Boolean hasAccess;
33

34
    private String id;
35
    
36
    @SerializedName(value = "username")
37
    private String userName;
38

39
    private String name;
40

41
    private String email;
42

43
    private String email2;
44

45
    @SerializedName(value = "active")
46
    private Boolean isActive;
47

48
    private String profileId;
49

50
    private String lastLogin;
51

52
    private String firstName;
53

54
    private String lastName;
55

56
    private String infix;
57

58
    public String getUserId() {
59
        return userId;
×
60
    }
61

62
    public String getTokenKey() {
63
        return tokenKey;
×
64
    }
65

66
    public String getTokenSecret() {
67
        return tokenSecret;
×
68
    }
69

70
    public Boolean hasAccess() {
71
        return hasAccess;
×
72
    }
73

74
    public String getId() {
75
        return id;
×
76
    }
77

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

82
    public String getUserName() {
83
        return userName;
×
84
    }
85

86
    public void setUserName(String userName) {
87
        this.userName = userName;
×
88
    }
×
89

90
    public String getName() {
91
        return name;
×
92
    }
93

94
    public void setName(String name) {
95
        this.name = name;
×
96
    }
×
97

98
    public String getEmail() {
99
        return email;
×
100
    }
101

102
    public void setEmail(String email) {
103
        this.email = email;
×
104
    }
×
105

106
    public String getEmail2() {
107
        return email2;
×
108
    }
109

110
    public void setEmail2(String email2) {
111
        this.email2 = email2;
×
112
    }
×
113

114
    public Boolean getIsActive() {
115
        return isActive;
×
116
    }
117

118
    public void setIsActive(Boolean isActive) {
119
        this.isActive = isActive;
×
120
    }
×
121

122
    public String getProfileId() {
123
        return profileId;
×
124
    }
125

126
    public void setProfileId(String profileId) {
127
        this.profileId = profileId;
×
128
    }
×
129

130
    public String getLastLogin() {
131
        return lastLogin;
×
132
    }
133

134
    public void setLastLogin(String lastLogin) {
135
        this.lastLogin = lastLogin;
×
136
    }
×
137

138
    public String getFirstName() {
139
        return firstName;
×
140
    }
141

142
    public void setFirstName(String firstName) {
143
        this.firstName = firstName;
×
144
    }
×
145

146
    public String getLastName() {
147
        return lastName;
×
148
    }
149

150
    public void setLastName(String lastName) {
151
        this.lastName = lastName;
×
152
    }
×
153

154
    public String getInfix() {
155
        return infix;
×
156
    }
157

158
    public void setInfix(String infix) {
159
        this.infix = infix;
×
160
    }
×
161
}
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