LOG.debug("<<< Read init parametrs from registry service.");
observationListenerConfiguration = new ObservationListenerConfiguration();
String entryPath = RegistryService.EXO_SERVICES + "/" + SERVICE_NAME + "/" + "nodeType";
RegistryEntry registryEntry = registryService.getEntry(sessionProvider, entryPath);
Document doc = registryEntry.getDocument();
Element element = doc.getDocumentElement();
nodeType = getAttributeSmart(element, "value");
entryPath = RegistryService.EXO_SERVICES + "/" + SERVICE_NAME + "/" + "repository";
registryEntry = registryService.getEntry(sessionProvider, entryPath);
doc = registryEntry.getDocument();
element = doc.getDocumentElement();
observationListenerConfiguration.setRepository(getAttributeSmart(element, "value"));
entryPath = RegistryService.EXO_SERVICES + "/" + SERVICE_NAME + "/" + "workspaces";
registryEntry = registryService.getEntry(sessionProvider, entryPath);
doc = registryEntry.getDocument();
element = doc.getDocumentElement();
String workspaces = getAttributeSmart(element, "value");
String ws[] = workspaces.split(";");
List<String> wsList = new ArrayList<String>();