private MetadataManager mm;
private void initMM() {
if (collectionName == null) return; // eg no scan in ncml
try {
mm = new MetadataManager(collectionName);
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e.getMessage());
}
}