use of com.testsigma.web.request.RuntimeRequest in project testsigma by testsigmahq.
the class StandaloneAppBridge method updateRunTimeData.
@Override
public void updateRunTimeData(Long environmentResultId, RuntimeEntity runtimeEntity) throws AutomatorException {
try {
RuntimeRequest runtimeRequest = convertToObject(runtimeEntity, RuntimeRequest.class);
runTimeDataService.updateRunTimeData(environmentResultId, runtimeRequest);
} catch (Exception e) {
log.error(e.getMessage(), e);
throw new AutomatorException(e.getMessage(), e);
}
}
Aggregations