1 7 package com.inversoft.verge.repository.config; 8 9 10 import java.util.Properties ; 11 12 import com.inversoft.beans.JavaBean; 13 14 15 22 public interface Config { 23 24 30 String getID(); 31 32 38 Class getBeanClass(); 39 40 49 int getScope(); 50 51 59 String getScopeStr(); 60 61 67 Properties getProperties(); 68 69 75 Properties getReferences(); 76 77 84 boolean hasProperty(String name); 85 86 93 boolean hasReference(String name); 94 95 102 JavaBean getJavaBean(); 103 } 104 | Popular Tags |