Merge "Move CQ operation name from actor.aai to aai"
[policy/models.git] / models-interactions / model-actors / actorServiceProvider / src / main / java / org / onap / policy / controlloop / actorserviceprovider / OperationOutcome.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.controlloop.actorserviceprovider;
22
23 import java.time.Instant;
24 import lombok.Data;
25 import lombok.NoArgsConstructor;
26 import lombok.NonNull;
27 import org.onap.policy.controlloop.ControlLoopOperation;
28 import org.onap.policy.controlloop.policy.PolicyResult;
29
30 /**
31  * Outcome from an operation. Objects of this type are passed from one stage to the next.
32  */
33 @Data
34 @NoArgsConstructor
35 public class OperationOutcome {
36     private String actor;
37     private String operation;
38     private String target;
39     private Instant start;
40     private Instant end;
41     private String subRequestId;
42     private PolicyResult result = PolicyResult.SUCCESS;
43     private String message;
44     private boolean finalOutcome;
45
46     /**
47      * Copy constructor.
48      *
49      * @param source source object from which to copy
50      */
51     public OperationOutcome(OperationOutcome source) {
52         this.actor = source.actor;
53         this.operation = source.operation;
54         this.target = source.target;
55         this.start = source.start;
56         this.end = source.end;
57         this.subRequestId = source.subRequestId;
58         this.result = source.result;
59         this.message = source.message;
60         this.finalOutcome = source.finalOutcome;
61     }
62
63     /**
64      * Creates a {@link ControlLoopOperation}, populating all fields with the values from
65      * this object. Sets the outcome field to the string representation of this object's
66      * outcome.
67      *
68      * @return
69      */
70     public ControlLoopOperation toControlLoopOperation() {
71         ControlLoopOperation clo = new ControlLoopOperation();
72
73         clo.setActor(actor);
74         clo.setOperation(operation);
75         clo.setTarget(target);
76         clo.setStart(start);
77         clo.setEnd(end);
78         clo.setSubRequestId(subRequestId);
79         clo.setOutcome(result.toString());
80         clo.setMessage(message);
81
82         return clo;
83     }
84
85     /**
86      * Determines if this outcome is for the given actor and operation.
87      *
88      * @param actor actor name
89      * @param operation operation name
90      * @return {@code true} if this outcome is for the given actor and operation
91      */
92     public boolean isFor(@NonNull String actor, @NonNull String operation) {
93         // do the operation check first, as it's most likely to be unique
94         return (operation.equals(this.operation) && actor.equals(this.actor));
95     }
96
97     /**
98      * Determines if an outcome is for the given actor and operation.
99      *
100      * @param outcome outcome to be examined, or {@code null}
101      * @param actor actor name
102      * @param operation operation name
103      * @return {@code true} if this outcome is for the given actor and operation,
104      *         {@code false} it is {@code null} or not for the actor/operation
105      */
106     public static boolean isFor(OperationOutcome outcome, String actor, String operation) {
107         return (outcome != null && outcome.isFor(actor, operation));
108     }
109
110     /**
111      * Sets the result.
112      *
113      * @param result new result
114      */
115     public void setResult(@NonNull PolicyResult result) {
116         this.result = result;
117     }
118 }