Skip to content

secureCodeBox/defectdojo-client-java

Folders and files

NameName
Last commit message
Last commit date
Jan 18, 2024
May 9, 2023
May 9, 2023
Aug 10, 2023
Mar 15, 2024
Jan 18, 2024
Feb 16, 2024
Jul 21, 2023
May 9, 2023
Jan 19, 2024
May 9, 2023
Feb 16, 2024
Jul 28, 2023
Jul 21, 2023
Mar 15, 2024

Repository files navigation

DefectDojo Client Java

Java Client to interact with the DefectDojo API.

Dependency Information

You can find the latest version and dependency infos on Maven Central.

Development

To run a local build clone this repo and just invoke the following command in the repo directory:

mvn clean install

Release

The release process is documented in a separate file.

Supported DefectDojo Versions

The client is supposed to be compatible with DefectDojo 1.10 and later, older version of DefectDojo might still work, but are not officially supported.

Example

import com.fasterxml.jackson.core.JsonProcessingException;
import io.securecodebox.persistence.defectdojo.config.Config;
import io.securecodebox.persistence.defectdojo.service.ProductTypeService;

import java.net.URISyntaxException;

public class DefectDojoClientTest {
    public static void main(String[] args) throws URISyntaxException, JsonProcessingException {

        // Configure DefectDojo URl and APIv2 Key
        var conf = new Config("https://defectdojo.example.com", "f8....");

        var productTypeService = new ProductTypeService(conf);
        var productTypes = productTypeService.search();

        System.out.println("ProductTypes:");
        for (var productType : productTypes) {
            System.out.println(" - Id: " + productType.getId() + ", Name: '" + productType.getName()) + "'";
        }
    }
}

Testing a modified client

To build a gradle project that depends on this client one can use ./gradlew build --include-build <path_to_this_folder>. Gradle will then build the project with this local version of the the client.