00001
00026 package org.objectweb.jonas.dbm;
00027
00028 import javax.management.MBeanException;
00029 import javax.management.NotificationFilter;
00030 import javax.management.NotificationListener;
00031
00032 import org.apache.commons.modeler.BaseModelMBean;
00033
00040 public class JDBCDataSourceMBean extends BaseModelMBean {
00045 public JDBCDataSourceMBean() throws MBeanException {
00046 super();
00047 }
00048
00056 public void addNotificationListener(NotificationListener pListner, NotificationFilter pFilter,
00057 java.lang.Object pHandback) throws java.lang.IllegalArgumentException {
00058 ((JDBCDataSource) (this.resource)).addNotificationListener(pListner, pFilter, pHandback);
00059 }
00060 }