Skip to content

Commit

Permalink
Misc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elandau committed May 19, 2017
1 parent c85a055 commit fdf2871
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ public int listenPort() {
}

@Override
public Map<String, String> getJerseyConfigProperties() {
Map<String, String> result = new HashMap<>();
public Map<String, Object> getJerseyConfigProperties() {
Map<String, Object> result = new HashMap<>();
Properties props = ConfigurationUtils.getProperties(ConfigurationManager.getConfigInstance().subset(ADMIN_JERSEY_PROPERTY_PREFIX));
for (Entry<Object, Object> prop : props.entrySet()) {
result.put(JERSEY_PROPERTY_PREFIX + "." + prop.getKey().toString(), prop.getValue().toString());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ public interface AdminContainerConfig {
boolean shouldScanClassPathForPluginDiscovery();
int listenPort();
List<Filter> additionalFilters();
Map<String, String> getJerseyConfigProperties();
Map<String, Object> getJerseyConfigProperties();

}

0 comments on commit fdf2871

Please sign in to comment.