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

9
import com.bynder.sdk.service.BynderClient;
10
import org.slf4j.Logger;
11
import org.slf4j.LoggerFactory;
12

13
import java.io.IOException;
14
import java.io.InputStream;
15
import java.util.Properties;
16

17
/**
18
 * Application properties to instantiate {@link BynderClient} and run the {@link AppSample}.
19
 */
20
public final class AppProperties {
21

22
    private static final Logger LOG = LoggerFactory.getLogger(AppProperties.class);
×
23

24
    private final Properties appProperties = new Properties();
×
25

26
    /**
27
     * Initialises a new instance of the class by loading the content in the
28
     * src/main/resources/app.properties file.
29
     */
30
    public AppProperties() {
×
31
        InputStream input = this.getClass().getClassLoader().getResourceAsStream("app.properties");
×
32

33
        try {
34
            appProperties.load(input);
×
35
        } catch (IOException e) {
×
36
            LOG.error(e.getMessage());
×
37
        }
×
38
    }
×
39

40
    public String getProperty(final String key) {
41
        return appProperties.getProperty(key);
×
42
    }
43
}
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