for (Element data : (List<Element>) outputList.getChildren("data-out", eAction.getNamespace())) {
if (data.getChild("uris", data.getNamespace()) != null) {
String uris = data.getChild("uris", data.getNamespace()).getTextTrim();
if (uris != null) {
String[] uriArr = uris.split(CoordELFunctions.INSTANCE_SEPARATOR);
FsActionExecutor fsAe = new FsActionExecutor();
for (String uri : uriArr) {
Path path = new Path(uri);
try {
fsAe.delete(user, group, path);
LOG.debug("Cleanup the output dir " + path);
}
catch (ActionExecutorException ae) {
LOG.warn("Failed to cleanup the output dir " + uri, ae);
}