@Override
protected JsonBean getJob(HttpServletRequest request, HttpServletResponse response) throws XServletException,
IOException, BaseEngineException {
ServletInputStream is = request.getInputStream();
byte[] b = new byte[101];
while (is.readLine(b, 0, 100) != -1) {
XLog.getLog(getClass()).warn("Printing :" + new String(b));
}
/*
* Configuration conf = new XConfiguration(request.getInputStream());
* String wfPath = conf.get(OozieClient.APP_PATH); String coordPath =