/**
  * Undeploys all event sources.
  *
  * @throws AxisFault if an error occurs undeploying the event sources.
  */
 private void undeployEventSources() throws AxisFault {
   log.info("Undeploying EventSources...");
   for (SynapseEventSource eventSource : synapseConfiguration.getEventSources()) {
     configurationContext.getAxisConfiguration().removeService(eventSource.getName());
   }
 }
 /**
  * Deploys all event sources.
  *
  * @throws AxisFault if an error occurs deploying the event sources.
  */
 private void deployEventSources() throws AxisFault {
   log.info("Deploying EventSources...");
   for (SynapseEventSource eventSource : synapseConfiguration.getEventSources()) {
     eventSource.buildService(configurationContext.getAxisConfiguration());
   }
 }