| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ConfigManager |
|
| 1.0;1 |
| 1 | package com.ctrip.apollo.internals; | |
| 2 | ||
| 3 | import com.ctrip.apollo.Config; | |
| 4 | ||
| 5 | /** | |
| 6 | * @author Jason Song(song_s@ctrip.com) | |
| 7 | */ | |
| 8 | public interface ConfigManager { | |
| 9 | /** | |
| 10 | * Get the config instance for the namespace specified. | |
| 11 | * @param namespace the namespace | |
| 12 | * @return the config instance for the namespace | |
| 13 | */ | |
| 14 | public Config getConfig(String namespace); | |
| 15 | } |