Element filEle = doc.createElement("filer");
filEle.setAttribute("class", "org.apache.xindice.core.filer.BTreeFiler");
colEle.appendChild(filEle);
}
CollectionManager colman = getCollection((String) message.get(COLLECTION));
Configuration config = new Configuration(doc.getDocumentElement(), false);
colman.createCollection((String) message.get(NAME), config);
Hashtable result = new Hashtable();
result.put(RESULT, message.get(NAME));
return result;
}