1 7 package org.jboss.web.loadbalancer.scheduler; 8 9 import javax.management.Notification ; 10 11 17 public class HostStateChangedNotification extends Notification  18 { 19 private static long sequenceId=0L; 20 21 public HostStateChangedNotification(Host source, String message) 22 { 23 super(HostStateChangedNotification.class.getName(), source, sequenceId++, message); 24 } 25 } | Popular Tags |