jdk/src/share/classes/com/sun/jmx/snmp/daemon/CommunicatorServer.java
changeset 25522 10d789df41bb
parent 23010 6dadb192ad81
equal deleted inserted replaced
25521:80551dd1d902 25522:10d789df41bb
  1270                          notifCount,                 // sequence number
  1270                          notifCount,                 // sequence number
  1271                          System.currentTimeMillis(), // time stamp
  1271                          System.currentTimeMillis(), // time stamp
  1272                          message,                    // message
  1272                          message,                    // message
  1273                          "State",                    // attribute name
  1273                          "State",                    // attribute name
  1274                          "int",                      // attribute type
  1274                          "int",                      // attribute type
  1275                          new Integer(oldState),      // old value
  1275                          oldState,                   // old value
  1276                          new Integer(newState) );    // new value
  1276                          newState );                 // new value
  1277         if (SNMP_ADAPTOR_LOGGER.isLoggable(Level.FINEST)) {
  1277         if (SNMP_ADAPTOR_LOGGER.isLoggable(Level.FINEST)) {
  1278             SNMP_ADAPTOR_LOGGER.logp(Level.FINEST, dbgTag,
  1278             SNMP_ADAPTOR_LOGGER.logp(Level.FINEST, dbgTag,
  1279                 "sendStateChangeNotification","Sending AttributeChangeNotification #"
  1279                 "sendStateChangeNotification","Sending AttributeChangeNotification #"
  1280                     + notifCount + " with message: "+ message);
  1280                     + notifCount + " with message: "+ message);
  1281         }
  1281         }