Skip to content

Commit

Permalink
Correct endpoints.
Browse files Browse the repository at this point in the history
  • Loading branch information
vteague committed Jun 30, 2024
1 parent ee79f0d commit 9a242cc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ public abstract class AbstractAllIrvEndpoint extends AbstractDoSDashboardEndpoin
*/
protected static final String RAIRE_URL = "raire_url";

/**
* RAIRE service endpoint name.
*/
protected static final String RAIRE_ENDPOINT = "/raire/get-assertions";

/**
* The httpClient used for making requests to the raire-service.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ public class GenerateAssertions extends AbstractAllIrvEndpoint {
*/
private static final Logger LOGGER = LogManager.getLogger(GenerateAssertions.class);

/**
* RAIRE service generate assertions endpoint.
*/
protected static final String RAIRE_ENDPOINT = "/raire/generate-assertions";

/**
* Query specifier for time limit.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ public class GetAssertions extends AbstractAllIrvEndpoint {
*/
private static final Logger LOGGER = LogManager.getLogger(GetAssertions.class);

/**
* RAIRE service get assertions endpoint.
*/
protected static final String RAIRE_ENDPOINT = "/raire/get-assertions";

/**
* RAIRE service suffix for csv.
*/
Expand Down

0 comments on commit 9a242cc

Please sign in to comment.