alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (MockJmxListener.java)

This example Groovy source code file (MockJmxListener.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

management, mockjmxlistener, mockjmxlistenermbean, mockjmxlistenermbean, notificationlistener, notificationlistener, object, object, string, string

The Groovy MockJmxListener.java source code

package groovy.jmx.builder;

import javax.management.Notification;
import javax.management.NotificationListener;

/**
 * Created by IntelliJ IDEA.
 * User: paulk
 * Date: 18/07/2010
 * Time: 12:16:46 PM
 * To change this template use File | Settings | File Templates.
 */
public class MockJmxListener implements MockJmxListenerMBean, NotificationListener {

    public void handleNotification(Notification note, Object handback) {
        System.out.println("Notification " + note.toString() + " received");
    }

    public String getObjectName() {
        return null;
    }

    public void makeObject() {
        // do nothing
    }
}

interface MockJmxListenerMBean {
    String getObjectName();

    void makeObject();
}

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy MockJmxListener.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.