Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CoreService |
|
| 1.0;1 |
1 | package org.kuali.mobility.shared; | |
2 | ||
3 | import java.util.Map; | |
4 | ||
5 | public interface CoreService { | |
6 | public String findGoogleAnalyticsProfileId(); | |
7 | public void setGoogleAnalyticsProfileId(String id); | |
8 | ||
9 | public void setCssCustomizations(Map<String, String> customizations); | |
10 | public Map<String, String> getCssCustomizations(); | |
11 | } |