1 17 package org.alfresco.config; 18 19 import java.util.List ; 20 import java.util.Map ; 21 22 27 public interface Config 28 { 29 37 public ConfigElement getConfigElement(String name); 38 39 46 public List <ConfigElement> getConfigElementList(String name); 47 48 53 public Map <String , Object > getConfigElements(); 54 55 61 public boolean hasConfigElement(String name); 62 63 } 67 | Popular Tags |