1 17 package org.apache.servicemix.jbi.event; 18 19 public class EndpointAdapter implements EndpointListener { 20 21 public void internalEndpointRegistered(EndpointEvent event) { 22 } 23 24 public void internalEndpointUnregistered(EndpointEvent event) { 25 } 26 27 public void externalEndpointRegistered(EndpointEvent event) { 28 } 29 30 public void externalEndpointUnregistered(EndpointEvent event) { 31 } 32 33 public void linkedEndpointRegistered(EndpointEvent event) { 34 } 35 36 public void linkedEndpointUnregistered(EndpointEvent event) { 37 } 38 39 public void remoteEndpointRegistered(EndpointEvent event) { 40 } 41 42 public void remoteEndpointUnregistered(EndpointEvent event) { 43 } 44 45 } 46 | Popular Tags |