Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 4 package com.tc.object.config; 5 6 import java.util.List ; 7 import java.util.Map ; 8 9 public interface DSOSpringConfigHelper { 10 11 String getRootName(); 12 13 boolean isLocationInfoEnabled(); 14 15 boolean isMatchingApplication(String applicationName); 17 18 boolean isMatchingConfig(String configPath); 19 20 boolean isDistributedEvent(String className); 21 22 boolean isDistributedBean(String beanName); 23 24 boolean isDistributedField(String beanName, String fieldName); 25 26 boolean isFastProxyEnabled(); 27 28 31 Map getDistributedBeans(); 32 33 36 List getDistributedEvents(); 37 38 void addApplicationNamePattern(String pattern); 40 41 void addConfigPattern(String pattern); 42 43 void addDistributedEvent(String expression); 44 45 void addBean(String name); 46 47 void excludeField(String beanName, String fieldName); 48 49 void setFastProxyEnabled(boolean b); 50 51 void setRootName(String rootName); 52 53 void setLocationInfoEnabled(boolean locationInfoEnabled); 54 } 55
| Popular Tags
|