for (Map.Entry<QName, String> entry: otherAttributes.entrySet()) {
String name = entry.getKey().getLocalPart();
properties.put(name, entry.getValue());
}
ObjectRecipe recipe = new ObjectRecipe(className, properties);
recipe.allow(Option.IGNORE_MISSING_PROPERTIES);
Service service = (Service) recipe.create(cl);
for (ExecutorType executorType: getExecutor()) {
Executor executor = executorType.getExecutor(cl, kernel);
service.addExecutor(executor);
TomcatServerGBean.executors.put(executor.getName(), executor);