View Javadoc

1   package org.codehaus.xfire.service.event;
2   
3   import org.codehaus.xfire.service.Service;
4   
5   /***
6    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
7    */
8   public interface RegistrationEventListener
9   {
10      public void onRegister(Service service);
11      
12      public void onUnregister(Service service);
13  }