protected abstract Map<String, CamelContext> getCamelContextMap();
protected void postProcessContext() throws Exception {
Map<String, CamelContext> map = getCamelContextMap();
if (map.size() == 0) {
throw new CamelException("Cannot find any Camel Context from the Application Context. Please check your Application Context setting");
}
Set<Map.Entry<String, CamelContext>> entries = map.entrySet();
int size = entries.size();
for (Map.Entry<String, CamelContext> entry : entries) {
String name = entry.getKey();