1 4 package com.tc.config.schema.repository; 5 6 import org.apache.xmlbeans.SchemaType; 7 import org.apache.xmlbeans.XmlObject; 8 9 import com.tc.config.schema.listen.ConfigurationChangeListener; 10 11 14 public interface BeanRepository { 15 16 void ensureBeanIsOfClass(Class theClass); 17 18 SchemaType rootBeanSchemaType(); 19 20 XmlObject bean(); 21 22 void addListener(ConfigurationChangeListener listener); 23 24 } 25 | Popular Tags |