f14229bce7adc3e578904459fb9dc277a6f1542f
[policy/engine.git] / ECOMP-ControlloopPolicy / src / main / java / org / openecomp / policy / controlloop / policy / ControlLoopPolicy.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ECOMP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.policy.controlloop.policy;
22
23 import java.util.LinkedList;
24
25 public class ControlLoopPolicy {
26         
27         public ControlLoop controlLoop;
28
29         public LinkedList<Policy> policies;
30
31         @Override
32         public String toString() {
33                 return "ControlLoopPolicy [controlLoop=" + controlLoop + ", policies=" + policies + "]";
34         }
35
36         @Override
37         public int hashCode() {
38                 final int prime = 31;
39                 int result = 1;
40                 result = prime * result + ((controlLoop == null) ? 0 : controlLoop.hashCode());
41                 result = prime * result + ((policies == null) ? 0 : policies.hashCode());
42                 return result;
43         }
44
45         @Override
46         public boolean equals(Object obj) {
47                 if (this == obj)
48                         return true;
49                 if (obj == null)
50                         return false;
51                 if (getClass() != obj.getClass())
52                         return false;
53                 ControlLoopPolicy other = (ControlLoopPolicy) obj;
54                 if (controlLoop == null) {
55                         if (other.controlLoop != null)
56                                 return false;
57                 } else if (!controlLoop.equals(other.controlLoop))
58                         return false;
59                 if (policies == null) {
60                         if (other.policies != null)
61                                 return false;
62                 } else if (!policies.equals(other.policies))
63                         return false;
64                 return true;
65         }
66
67 }