ConfigContext configContext = event.getConfigContext();
Config config = ServerBeansFactory.getConfigBean(configContext);
if ( config == null) return;
ConfigAdd configAdd = null;
ArrayList configChangeList = event.getConfigChangeList();
VirtualServer vsBean = null;
String xpath = null;
Server serverBean = ServerBeansFactory.getServerBean(configContext);
ElementProperty elementProperty = null;
Object object;
Object configObject;
for (int i=0; i < configChangeList.size(); i++){
configObject = configChangeList.get(i);
if ( configObject instanceof ConfigAdd) {
configAdd = (ConfigAdd)configObject;
xpath = configAdd.getXPath();
if( xpath != null){
object = configContext.exactLookup(xpath);
if ( object instanceof VirtualServer){
vsBean = (VirtualServer)object;