This repository provides a Java client for Orkes Conductor Server. With this client you can manage metadata (Workflows and tasks), run workflows, create workers and more.
Check out the examples in this project.
Everything related to server settings should be done within the ApiClient
class, by setting the required parameters when initializing an object, like this:
ApiClient apiClient = new ApiClient("https://play.orkes.io/api");
Use if your conductor server requires authentication.
See Access Control for more details on role based access control with Conductor and generating API keys for your environment. Detailed example.
ApiClient apiClient = new ApiClient("https://play.orkes.io/api", "key", "secret");