Package org.apache.ivory.service

Examples of org.apache.ivory.service.ConfigurationChangeListener


        String listenerClassNames = StartupProperties.get().
                getProperty("configstore.listeners", "org.apache.ivory.entity.v0.EntityGraph");
        for(String listenerClassName:listenerClassNames.split(",")) {
            listenerClassName = listenerClassName.trim();
            if (listenerClassName.isEmpty()) continue;
            ConfigurationChangeListener listener = ReflectionUtils.getInstanceByClassName(listenerClassName);
            registerListener(listener);
        }
       
        try {
            for (EntityType type : EntityType.values()) {
View Full Code Here

TOP

Related Classes of org.apache.ivory.service.ConfigurationChangeListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.