* @param taskId
* @param gatewayId
*/
public boolean submitJob(String experimentId, String taskId, String gatewayId) throws TException {
logger.info("GFac Recieved the Experiment: " + experimentId + " TaskId: " + taskId);
GFac gfac = getGfac();
try {
return gfac.submitJob(experimentId, taskId, gatewayId);
} catch (GFacException e) {
throw new TException("Error launching the experiment : " + e.getMessage(), e);
}
}