Delete preprocessed flag from actors
[policy/models.git] / models-interactions / model-actors / actorServiceProvider / src / main / java / org / onap / policy / controlloop / actorserviceprovider / parameters / ControlLoopOperationParams.java
index 67f6803..2769697 100644 (file)
@@ -96,13 +96,6 @@ public class ControlLoopOperationParams {
      */
     private Map<String, Object> payload;
 
-    /**
-     * {@code True} if the preprocessing steps have already been executed, {@code false}
-     * otherwise.
-     */
-    // TODO remove this once the rules no longer reference it
-    private boolean preprocessed;
-
     /**
      * Number of retries allowed, or {@code null} if no retries.
      */
@@ -120,12 +113,6 @@ public class ControlLoopOperationParams {
      */
     private Map<String, String> targetEntityIds;
 
-    /**
-     * Target entity.
-     */
-    // TODO to be removed
-    private String targetEntity;
-
     /**
      * Timeout, in seconds, or {@code null} if no timeout. Zero and negative values also
      * imply no timeout.
@@ -197,9 +184,8 @@ public class ControlLoopOperationParams {
      *
      * @return a new operation outcome
      */
-    // TODO to be removed
     public OperationOutcome makeOutcome() {
-        return makeOutcome(getTargetEntity());
+        return makeOutcome(null);
     }
 
     /**