Package com.ericsson.ssa.config.event

Examples of com.ericsson.ssa.config.event.ConfigAddEvent


           
            if ((tlEventTypes.get() == null) ||
                    tlEventTypes.get().contains(ConfigAddEvent.TYPE)) {
                if ((tlEventMask.get() == null) ||
                        parentNode.matches(tlEventMask.get())) {
                    ConfigAddEvent configEvent = new ConfigAddEvent(this,
                            parentNode, childNode);

                    if (!currentEventQueue.contains(configEvent)) {
                        currentEventQueue.add(configEvent);
                        if (log.isLoggable(Level.FINEST)) {
                            log.log(Level.FINEST, "Captured event " +
                                configEvent.getType() + " : " +
                                configEvent.getNode() + " mask: " +
                                tlEventMask.get() + " types: " +
                                tlEventTypes.get());
                        }
                    }
                }
View Full Code Here

TOP

Related Classes of com.ericsson.ssa.config.event.ConfigAddEvent

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.