Skip to content

Commit

Permalink
EA-4015 make properties public to instantiate the client with other a…
Browse files Browse the repository at this point in the history
…pi's propety file
  • Loading branch information
SrishtiSingh-eu committed Nov 25, 2024
1 parent 9bfdd58 commit 6eeefd0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ public final class ClientConfiguration {
private static final Logger LOGGER = LogManager.getLogger(ClientConfiguration.class);

protected static final String SET_CLIENT_PROPERTIES_FILE = "/set-client.user.properties";
protected static final String PROP_SET_API_KEY = "set.api.key";
protected static final String PROP_SET_SERVICE_URI = "set.service.uri";
protected static final String PROP_OAUTH_SERVICE_URI = "oauth.service.uri";
protected static final String PROP_OAUTH_REQUEST_PARAMS = "oauth.token.request.params";
public static final String PROP_SET_API_KEY = "set.api.key";
public static final String PROP_SET_SERVICE_URI = "set.service.uri";
public static final String PROP_OAUTH_SERVICE_URI = "oauth.service.uri";
public static final String PROP_OAUTH_REQUEST_PARAMS = "oauth.token.request.params";

private Properties properties;

Expand Down

0 comments on commit 6eeefd0

Please sign in to comment.