Skip to content

Commit

Permalink
Added: humanReadable in Bridgehead Config (II)
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 26, 2023
1 parent c13876a commit 03dafa9
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,15 @@ public boolean isRegisteredBridgehead(String bridgehead) {
}

public String getExporterUrl(String bridgehead) {
return config.get(bridgehead).exporterUrl;
return config.get(bridgehead).getExporterUrl();
}

public String getExporterApiKey(String bridgehead) {
return config.get(bridgehead).exporterApiKey;
return config.get(bridgehead).getExporterApiKey();
}

public String getHumanReadable(String bridgehead) {
return config.get(bridgehead).getHumanReadable();
}

public Optional<String> getBridgehead(String explorerCode) {
Expand Down

0 comments on commit 03dafa9

Please sign in to comment.