Package test.compliance.server.support

Source Code of test.compliance.server.support.Test4

/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/

package test.compliance.server.support;

import javax.management.MBeanRegistration;
import javax.management.ObjectName;
import javax.management.MBeanServer;
import javax.management.MBeanRegistrationException;

/**
* @author  <a href="mailto:juha@jboss.org">Juha Lindfors</a>.
* @version $Revision: 1.2 $
*  
*/
public class Test4 implements Test4MBean, MBeanRegistration
{

   public ObjectName preRegister(MBeanServer server, ObjectName name) throws Exception
   {
      throw new MBeanRegistrationException(new MyScreamingException());
   }
  
   public void postRegister(Boolean b)
   {
   }
  
   public void preDeregister() throws Exception
   {
   }
  
   public void postDeregister()
   {
     
   }
}



TOP

Related Classes of test.compliance.server.support.Test4

TOP
Copyright © 2018 www.massapi.com. 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.