Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.management.jmod - Management Module
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module.
JDK 11 Management module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.management.jmod.
JDK 11 Management module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Management module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.management.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/management/AttributeChangeNotification.java
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.management; /** * Provides definitions of the attribute change notifications sent by MBeans. * <P> * It's up to the MBean owning the attribute of interest to create and send * attribute change notifications when the attribute change occurs. * So the <CODE>NotificationBroadcaster</CODE> interface has to be implemented * by any MBean for which an attribute change is of interest. * <P> * Example: * If an MBean called <CODE>myMbean</CODE> needs to notify registered listeners * when its attribute: * <BLOCKQUOTE><CODE> * String myString * </CODE></BLOCKQUOTE> * is modified, <CODE>myMbean</CODE> creates and emits the following notification: * <BLOCKQUOTE><CODE> * new AttributeChangeNotification(myMbean, sequenceNumber, timeStamp, msg, * "myString", "String", oldValue, newValue); * </CODE></BLOCKQUOTE> * * @since 1.5 */ public class AttributeChangeNotification extends javax.management.Notification { /* Serial version */ private static final long serialVersionUID = 535176054565814134L; /** * Notification type which indicates that the observed MBean attribute value has changed. * <BR>The value of this type string is <CODE>jmx.attribute.change</CODE>. */ public static final String ATTRIBUTE_CHANGE = "jmx.attribute.change"; /** * @serial The MBean attribute name. */ private String attributeName = null; /** * @serial The MBean attribute type. */ private String attributeType = null; /** * @serial The MBean attribute old value. */ private Object oldValue = null; /** * @serial The MBean attribute new value. */ private Object newValue = null; /** * Constructs an attribute change notification object. * In addition to the information common to all notification, the caller must supply the name and type * of the attribute, as well as its old and new values. * * @param source The notification producer, that is, the MBean the attribute belongs to. * @param sequenceNumber The notification sequence number within the source object. * @param timeStamp The date at which the notification is being sent. * @param msg A String containing the message of the notification. * @param attributeName A String giving the name of the attribute. * @param attributeType A String containing the type of the attribute. * @param oldValue An object representing value of the attribute before the change. * @param newValue An object representing value of the attribute after the change. */ public AttributeChangeNotification(Object source, long sequenceNumber, long timeStamp, String msg, String attributeName, String attributeType, Object oldValue, Object newValue) { super(AttributeChangeNotification.ATTRIBUTE_CHANGE, source, sequenceNumber, timeStamp, msg); this.attributeName = attributeName; this.attributeType = attributeType; this.oldValue = oldValue; this.newValue = newValue; } /** * Gets the name of the attribute which has changed. * * @return A String containing the name of the attribute. */ public String getAttributeName() { return attributeName; } /** * Gets the type of the attribute which has changed. * * @return A String containing the type of the attribute. */ public String getAttributeType() { return attributeType; } /** * Gets the old value of the attribute which has changed. * * @return An Object containing the old value of the attribute. */ public Object getOldValue() { return oldValue; } /** * Gets the new value of the attribute which has changed. * * @return An Object containing the new value of the attribute. */ public Object getNewValue() { return newValue; } }
⏎ javax/management/AttributeChangeNotification.java
Or download all of them as a single archive file:
File name: java.management-11.0.1-src.zip File size: 828174 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.management.rmi.jmod - Management RMI Module
2020-04-30, 98953👍, 0💬
Popular Posts:
How to compare performances of various XML parsers with the jaxp\SourceValidator.jav aprovided in th...
What is ojdbc.jar - JDBC Driver for Oracle? ojdbc.jar is a JDBC driver from Oracle that provides dat...
JDK 17 jdk.hotspot.agent.jmod is the JMOD file for JDK 17 Hotspot Agent module. JDK 17 Hotspot Agent...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...