| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ConfigFactoryManager |
|
| 1.0;1 |
| 1 | package com.ctrip.apollo.spi; | |
| 2 | ||
| 3 | /** | |
| 4 | * @author Jason Song(song_s@ctrip.com) | |
| 5 | */ | |
| 6 | public interface ConfigFactoryManager { | |
| 7 | /** | |
| 8 | * Get the config factory for the namespace. | |
| 9 | * | |
| 10 | * @param namespace the namespace | |
| 11 | * @return the config factory for this namespace | |
| 12 | */ | |
| 13 | public ConfigFactory getFactory(String namespace); | |
| 14 | } |