@Override
 protected String getCoordJobXml(Path appPath) {
   try {
     Reader reader = IOUtils.getResourceAsReader("coord-matd-job.xml", -1);
     String appXml = IOUtils.getReaderAsString(reader, -1);
     return appXml;
   } catch (IOException ioe) {
     throw new RuntimeException(XLog.format("Could not get coord-matd-job.xml", ioe));
   }
 }