1 23 package com.sun.enterprise.admin.event; 24 25 public class MBeanElementChangeEvent extends ElementChangeEvent { 26 27 public static final String EVENT_TYPE = MBeanElementChangeEvent.class.getName(); 28 public MBeanElementChangeEvent(String instance, int actionCode, String elementId) { 29 super(instance, EVENT_TYPE, actionCode, elementId); 30 System.out.println("The mbean element change event is being constructed ..."); 31 System.out.println("evtType = " + EVENT_TYPE); 32 System.out.println("instance = " + instance); 33 System.out.println("actionCode = " + actionCode); 34 System.out.println("elementId = " + elementId); 35 } 36 } | Popular Tags |