Jaroslav Bachorik 96c02bccd3 8005309: Missed tests for 6783290,6937053,7009998
Missed tests for 6783290,6937053,7009998

Reviewed-by: sjiang, emcmanus
2012-12-20 20:12:32 +04:00

26 lines
572 B
Java

import javax.management.Notification;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Jaroslav Bachorik <jaroslav.bachorik at oracle.com>
*/
public class TestNotification extends Notification {
private ConfigKey key;
public TestNotification(String type, Object source, long sequenceNumber) {
super(type, source, sequenceNumber);
key = ConfigKey.CONSTANT1;
}
@Override
public String toString() {
return "TestNotification{" + "key=" + key + '}';
}
}