[POLICY-122] Policy GUI Fixes
[policy/engine.git] / ECOMP-ControlloopPolicy / src / main / java / org / openecomp / policy / controlloop / policy / guard / Guard.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 public class Guard {
23
24         private static final String DEFAULTVERSION = "2.0.0";
25         
26         private String version = DEFAULTVERSION;
27         
28         public Guard() {
29                 //DO Nothing empty Constructor. 
30         }
31         
32         public String getVersion() {
33                 return version;
34         }
35
36         public void setVersion(String version) {
37                 this.version = version;
38         }
39
40         @Override
41         public String toString() {
42                 return "Guard [version=" + version + "]";
43         }
44         @Override
45         public int hashCode() {
46                 final int prime = 31;
47                 int result = 1;
48                 result = prime * result + ((version == null) ? 0 : version.hashCode());
49                 return result;
50         }
51         @Override
52         public boolean equals(Object obj) {
53                 if (this == obj)
54                         return true;
55                 if (obj == null)
56                         return false;
57                 if (getClass() != obj.getClass())
58                         return false;
59                 Guard other = (Guard) obj;
60                 if (version == null) {
61                         if (other.version != null)
62                                 return false;
63                 } else if (!version.equals(other.version))
64                         return false;
65                 return true;
66         }
67 }