importjavax.management.Notification;/* * To change this template, choose Tools | Templates * and open the template in the editor. *//** * * @author Jaroslav Bachorik <jaroslav.bachorik at oracle.com> */publicclassTestNotificationextendsNotification{privateConfigKeykey;publicTestNotification(Stringtype,Objectsource,longsequenceNumber){super(type,source,sequenceNumber);key=ConfigKey.CONSTANT3;}@OverridepublicStringtoString(){return"TestNotification{"+"key="+key+'}';}}