use of org.onap.so.client.sdnc.beans.SDNCRequest in project so by onap.
the class SDNCRequestTasks method createCorrelationVariables.
public void createCorrelationVariables(DelegateExecution execution) {
SDNCRequest request = (SDNCRequest) execution.getVariable(SDNC_REQUEST);
execution.setVariable(request.getCorrelationName() + CORRELATOR, request.getCorrelationValue());
execution.setVariable("sdncTimeout", request.getTimeOut());
}
Aggregations