A HTTP client to communicate with the EDC Connector for Java.
Built with ❤️ at Think-it.The EDC Connector Client library for Java is a simple, easy and with minimum dependencies amount library to interact with EDC Connector Management API
Features:
- JSON-LD expansion/compaction processes done under the hood of the class model.
- Straightforward error handling.
- Configurable http interceptors to customize the calls made to the connector.
- Java 17 or higher
The library is published on maven central Choose the latest version and add it as a dependency in your favorite build automation tool.
Everything evolves around the EdcConnectorClient
that can be instantiated through the Builder
:
var client = EdcConnectorClient.newBuilder()
.managementUrl("http://your.connector/management/api")
.build();
From that client
object the context specific endpoint services can be obtained:
assets()
policyDefinitions()
contractDefinitions()
contractNegotiations()
contractAgreements()
transferProcesses()
dataplanes()
applicationObservability()
catalogs()
Contributions to this library are always welcome and highly encouraged
See CONTRIBUTING documentation for more information on how to get started.
Copyright 2022-2024 Think.iT GmbH.
Licensed under the Apache License, Version 2.0. Files in the project may not be copied, modified, or distributed except according to those terms.