[jboss-cvs] jboss-seam/src/ioc/org/jboss/seam/ioc/microcontainer ...
Gavin King
gavin.king at jboss.com
Thu May 17 19:31:39 EDT 2007
User: gavin
Date: 07/05/17 19:31:39
Modified: src/ioc/org/jboss/seam/ioc/microcontainer
JMXNotificationComponent.java
PojoNotificationComponent.java
Log:
@Override
Revision Changes Path
1.3 +3 -1 jboss-seam/src/ioc/org/jboss/seam/ioc/microcontainer/JMXNotificationComponent.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: JMXNotificationComponent.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/ioc/org/jboss/seam/ioc/microcontainer/JMXNotificationComponent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- JMXNotificationComponent.java 13 Mar 2007 16:52:20 -0000 1.2
+++ JMXNotificationComponent.java 17 May 2007 23:31:39 -0000 1.3
@@ -59,12 +59,14 @@
return new ObjectName("seam:service=" + getClass().getSimpleName() + "." + component.getName());
}
+ @Override
protected void notifyController(Component component) throws Throwable
{
objectName = createObjectName(component);
handleJMXRegistration(true);
}
+ @Override
protected void clearNotification() throws Throwable
{
handleJMXRegistration(false);
1.2 +2 -0 jboss-seam/src/ioc/org/jboss/seam/ioc/microcontainer/PojoNotificationComponent.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PojoNotificationComponent.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/ioc/org/jboss/seam/ioc/microcontainer/PojoNotificationComponent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- PojoNotificationComponent.java 13 Mar 2007 16:52:20 -0000 1.1
+++ PojoNotificationComponent.java 17 May 2007 23:31:39 -0000 1.2
@@ -59,6 +59,7 @@
return kernel;
}
+ @Override
protected void notifyController(Component component) throws Throwable
{
Class<PojoNotificationComponent> clazz = PojoNotificationComponent.class;
@@ -68,6 +69,7 @@
controller.install(beanMetaData, this);
}
+ @Override
protected void clearNotification() throws Throwable
{
KernelController controller = getKernel().getController();
More information about the jboss-cvs-commits
mailing list