6ba4ca47876944a38ea594de9994e2a857e7a89a
[policy/drools-applications.git] / controlloop / common / coordination / src / main / java / org / onap / policy / coordination / CoordinationDirective.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * guard
4  * ================================================================================
5  * Copyright (C) 2019 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.coordination;
22
23 import java.util.List;
24
25 public class CoordinationDirective {
26
27     private List<String> controlLoop;
28     private String coordinationFunction;
29
30     public List<String> getControlLoop() {
31         return controlLoop;
32     }
33
34     /**
35      * gets the ith control loop.
36      *
37      * @param index the control loop's index
38      * @return the CoordinationDirective's string representation
39      */
40     public String getControlLoop(int index) {
41         return controlLoop.get(index);
42     }
43
44     public void setControlLoop(List<String> controlLoop) {
45         this.controlLoop = controlLoop;
46     }
47
48     public String getCoordinationFunction() {
49         return coordinationFunction;
50     }
51
52     public void setCoordinationFunction(String coordinationFunction) {
53         this.coordinationFunction = coordinationFunction;
54     }
55
56     /**
57      * toString.
58      *
59      * @return the CoordinationDirective's string representation
60      */
61     public String toString() {
62         return "CoordinationDirective[ "
63             + String.join(" / ", controlLoop)
64             + " / " + coordinationFunction + "]";
65     }
66
67 }