1 23 24 package com.sun.enterprise.admin.event; 25 26 27 public class AdminEventManager { 28 29 30 private MBeanLocator mbLoc; 31 32 private static AdminEventManager aem =null; 33 34 private AdminEventManager () { 35 mbLoc = new MBeanLocatorImpl(); 36 } 37 38 44 MBeanLocator getMBeanLocator() { return mbLoc; } 45 46 public static synchronized AdminEventManager getAdminEventManager() { 47 48 if ( aem == null ) { 49 aem = new AdminEventManager(); 50 } 51 52 return aem; 53 } 54 } 55 | Popular Tags |