private File getPath(final LogicalPath logicalPath) {
   final Pom pom = pomManagementService.getPomFromModuleName(logicalPath.getModule());
   final File moduleRoot = getModuleRoot(logicalPath.getModule(), pom);
   final String pathRelativeToPom = logicalPath.getPathRelativeToPom(pom);
   return new File(moduleRoot, pathRelativeToPom);
 }
 public String getRoot(final LogicalPath modulePathId) {
   final Pom pom = pomManagementService.getPomFromModuleName(modulePathId.getModule());
   return pom.getPhysicalPath(modulePathId.getPath()).getLocationPath();
 }