Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / policy-yaml / src / main / java / org / onap / policy / controlloop / policy / ControlLoopPolicy.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * policy-yaml
4  * ================================================================================
5  * Copyright (C) 2017-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.policy;
22
23 import java.io.Serializable;
24 import java.util.List;
25
26 public class ControlLoopPolicy implements Serializable {
27     private static final long serialVersionUID = 1L;
28     
29     private ControlLoop controlLoop;
30
31     private List<Policy> policies;
32
33     public ControlLoop getControlLoop() {
34         return controlLoop;
35     }
36
37     public void setControlLoop(ControlLoop controlLoop) {
38         this.controlLoop = controlLoop;
39     }
40
41     public List<Policy> getPolicies() {
42         return policies;
43     }
44
45     public void setPolicies(List<Policy> policies) {
46         this.policies = policies;
47     }
48
49     @Override
50     public String toString() {
51         return "ControlLoopPolicy [controlLoop=" + controlLoop + ", policies=" + policies + "]";
52     }
53
54     @Override
55     public int hashCode() {
56         final int prime = 31;
57         int result = 1;
58         result = prime * result + ((controlLoop == null) ? 0 : controlLoop.hashCode());
59         result = prime * result + ((policies == null) ? 0 : policies.hashCode());
60         return result;
61     }
62
63     @Override
64     public boolean equals(Object obj) {
65         if (this == obj) {
66             return true;
67         }
68         if (obj == null) {
69             return false;
70         }
71         if (getClass() != obj.getClass()) {
72             return false;
73         }
74         ControlLoopPolicy other = (ControlLoopPolicy) obj;
75         if (controlLoop == null) {
76             if (other.controlLoop != null) {
77                 return false;
78             }
79         } else if (!controlLoop.equals(other.controlLoop)) {
80             return false;
81         }
82         if (policies == null) {
83             if (other.policies != null) {
84                 return false;
85             }
86         } else if (!policies.equals(other.policies)) {
87             return false;
88         }
89         return true;
90     }
91
92 }