Skip to content

Commit

Permalink
CORE-17476 Adding Corda worker RPC endpoints to API schema (#1276)
Browse files Browse the repository at this point in the history
Adding a config key for the worker service endpoints to the API package
  • Loading branch information
ben-millar authored Oct 10, 2023
1 parent 30bae2c commit 4e04896
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ private BootConfig() {
public static final String BOOT_STATE_MANAGER_DB_USER = BOOT_STATE_MANAGER + ".database.user";
public static final String BOOT_STATE_MANAGER_DB_PASS = BOOT_STATE_MANAGER + ".database.pass";
public static final String BOOT_STATE_MANAGER_JDBC_URL = BOOT_STATE_MANAGER + ".database.jdbc.url";

public static final String BOOT_WORKER_SERVICE = "worker";
public static final String CRYPTO_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.crypto";
public static final String VERIFICATION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.verification";
public static final String UNIQUENESS_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.uniqueness";
public static final String PERSISTENCE_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.persistence";
}

0 comments on commit 4e04896

Please sign in to comment.