Skip to content

Commit

Permalink
allow saiku color config
Browse files Browse the repository at this point in the history
  • Loading branch information
edu-de committed Dec 8, 2022
1 parent 243aa31 commit 6317ea5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/net/datenwerke/gf/service/theme/ThemeConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ public void addColorMapByReference(String name, String ref) {
if (colorNames.containsKey(ref))
colorMap.put(name, colorNames.get(ref));
}

public Map<String, String> getColorNames() {
return colorNames;
}

public void addColorMapByName(String name, String refName) {
colorMapRefName.put(name, refName);
Expand Down
2 changes: 2 additions & 0 deletions src/net/datenwerke/gf/service/theme/ThemeService.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ public interface ThemeService {
byte[] getLogo();

Map<String, String> getColorMap();

ThemeConfig getThemeConfig();

}
5 changes: 5 additions & 0 deletions src/net/datenwerke/gf/service/theme/ThemeServiceImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,9 @@ protected String loadTheme() {
}
}

@Override
public ThemeConfig getThemeConfig() {
return null;
}

}

0 comments on commit 6317ea5

Please sign in to comment.