Include response in OperationOutcome
[policy/models.git] / models-interactions / model-actors / actor.guard / src / main / java / org / onap / policy / controlloop / actor / guard / GuardOperation.java
index 3a7821e..da1f956 100644 (file)
@@ -142,6 +142,8 @@ public class GuardOperation extends HttpOperation<DecisionResponse> {
     protected CompletableFuture<OperationOutcome> postProcessResponse(OperationOutcome outcome, String url,
                     Response rawResponse, DecisionResponse response) {
 
+        outcome.setResponse(response);
+
         // determine the result
         String status = response.getStatus();
         if (status == null) {