Package org.springframework.jmx.export.notification

Examples of org.springframework.jmx.export.notification.NotificationPublisherAware


        } catch (InvalidTargetObjectTypeException e) {
            throw new JMException(e.getMessage());
        }
       
        if (obj instanceof NotificationPublisherAware) {
            NotificationPublisherAware publishereAwareObj = (NotificationPublisherAware) obj;
            publishereAwareObj.setNotificationPublisher(new ModelMBeanNotificationPublisher(mbean, name, obj));
        }

        return mbean;
    }
View Full Code Here

TOP

Related Classes of org.springframework.jmx.export.notification.NotificationPublisherAware

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.