37fd431a02176db6861568d53e1c716ede0f8d22
[policy/engine.git] / ECOMP-ControlloopPolicy / src / main / java / org / openecomp / policy / controlloop / policy / guard / ControlLoopGuard.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 package org.openecomp.policy.controlloop.policy.guard;
21
22 import java.util.LinkedList;
23
24 public class ControlLoopGuard {
25         
26         public Guard guard;
27         
28         public LinkedList<GuardPolicy> guards;
29         
30         public ControlLoopGuard() {
31                 
32         }
33         
34         public ControlLoopGuard(ControlLoopGuard CLGuard) {
35                 this.guard = new Guard();
36                 this.guards = new LinkedList<GuardPolicy>(CLGuard.guards);
37         }
38         
39         @Override
40         public String toString() {
41                 return "Guard [guard=" + guard + ", GuardPolicies=" + guards + "]";
42         }
43
44         @Override
45         public int hashCode() {
46                 final int prime = 31;
47                 int result = 1;
48                 result = prime * result + ((guard == null) ? 0 : guard.hashCode());
49                 result = prime * result + ((guards == null) ? 0 : guards.hashCode());
50                 return result;
51         }
52
53         @Override
54         public boolean equals(Object obj) {
55                 if (this == obj)
56                         return true;
57                 if (obj == null)
58                         return false;
59                 if (getClass() != obj.getClass())
60                         return false;
61                 ControlLoopGuard other = (ControlLoopGuard) obj;
62                 if (guard == null) {
63                         if (other.guard != null)
64                                 return false;
65                 } else if (!guard.equals(other.guard))
66                         return false;
67                 if (guards == null) {
68                         if (other.guards != null)
69                                 return false;
70                 } else if (!guards.equals(other.guards))
71                         return false;
72                 return true;
73         }
74
75         
76 }