Coverage Report - com.ctrip.framework.apollo.spi.ConfigFactoryManager
 
Classes in this File Line Coverage Branch Coverage Complexity
ConfigFactoryManager
N/A
N/A
1
 
 1  
 package com.ctrip.framework.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  
 }