private MuleContext bootstrapMule() throws MuleException
{
System.out.printf("Bootstrapping Mule with config: %s ...", getConfigurationFile());
final MuleClient muleClient = new MuleClient(getConfigurationFile());
final MuleContext muleContext = muleClient.getMuleContext();
muleContext.start();
System.out.println(" Done!\n");
return muleContext;
}
protected abstract String getConfigurationFile();