d62dc0276327f31af43433f1b0e2f0990f2553a7
[policy/drools-applications.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * AppcLcmActorServiceProvider
4  * ================================================================================
5  * Copyright (C) 2018 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.params;
22
23 import java.io.Serializable;
24
25 public class ControlLoopParams implements Serializable {
26
27     private static final long serialVersionUID = 970755684770982776L;
28     
29     private String closedLoopControlName;
30     private String controlLoopYaml;
31     private String policyName;
32     private String policyScope;
33     private String policyVersion;
34
35     public ControlLoopParams() {
36         super();
37     }
38
39     public ControlLoopParams(ControlLoopParams params) {
40         this.closedLoopControlName = params.closedLoopControlName;
41         this.controlLoopYaml = params.controlLoopYaml;
42         this.policyName = params.policyName;
43         this.policyScope = params.policyScope;
44         this.policyVersion = params.policyVersion;
45     }
46
47     public String getClosedLoopControlName() {
48         return closedLoopControlName;
49     }
50
51     public void setClosedLoopControlName(String closedLoopControlName) {
52         this.closedLoopControlName = closedLoopControlName;
53     }
54
55     public String getControlLoopYaml() {
56         return controlLoopYaml;
57     }
58
59     public void setControlLoopYaml(String controlLoopYaml) {
60         this.controlLoopYaml = controlLoopYaml;
61     }
62
63     public String getPolicyName() {
64         return policyName;
65     }
66
67     public void setPolicyName(String policyName) {
68         this.policyName = policyName;
69     }
70
71     public String getPolicyScope() {
72         return policyScope;
73     }
74
75     public void setPolicyScope(String policyScope) {
76         this.policyScope = policyScope;
77     }
78
79     public String getPolicyVersion() {
80         return policyVersion;
81     }
82
83     public void setPolicyVersion(String policyVersion) {
84         this.policyVersion = policyVersion;
85     }
86
87 }