FileDocCategorySizeDatePackage
AttributeChangeNotificationBuilder.javaAPI DocGlassfish v2 API3267Fri May 04 22:31:04 BST 2007com.sun.appserv.management.util.jmx

AttributeChangeNotificationBuilder

public class AttributeChangeNotificationBuilder extends NotificationBuilder
Base class for building AMX Notifications.

Fields Summary
Constructors Summary
public AttributeChangeNotificationBuilder(ObjectName source)

		super( AttributeChangeNotification.ATTRIBUTE_CHANGE, source );
	
Methods Summary
public final javax.management.AttributeChangeNotificationbuildAttributeChange(java.lang.String msg, java.lang.String attributeName, java.lang.String attributeType, java.lang.Object oldValue, java.lang.Object newValue)

		final AttributeChangeNotification notif	= new AttributeChangeNotification(
			getSource(),
			nextSequenceNumber(),
			now(),
			msg,
			attributeName,
			attributeType,
			oldValue,
			newValue );
		
		return( notif );
	
public final javax.management.NotificationbuildNew()

		throw new IllegalArgumentException();
	
public final javax.management.NotificationbuildNew(java.lang.String key, java.lang.Object value)

		throw new IllegalArgumentException();