1 22 package org.jboss.test.system.controller.support; 23 24 import javax.management.MBeanRegistration ; 25 import javax.management.MBeanServer ; 26 import javax.management.ObjectName ; 27 28 34 public class AbstractRegistration implements MBeanRegistration , AbstractRegistrationMBean 35 { 36 public ObjectName preRegister(MBeanServer server, ObjectName name) throws Exception  37 { 38 return name; 39 } 40 41 public void postRegister(Boolean registrationDone) 42 { 43 } 44 45 public void preDeregister() throws Exception  46 { 47 } 48 49 public void postDeregister() 50 { 51 } 52 } 53 | Popular Tags |