163cf0643cc6b1c2ead0f412e1b346881fdbb573
[policy/models.git] / models-interactions / model-yaml / src / main / java / org / onap / policy / controlloop / policy / guard / Guard.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * policy-yaml
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.policy.guard;
23
24 public class Guard {
25
26     private static final String DEFAULTVERSION = "2.0.0";
27     
28     private String version = DEFAULTVERSION;
29     
30     public Guard() {
31         //DO Nothing empty Constructor. 
32     }
33     
34     public String getVersion() {
35         return version;
36     }
37
38     public void setVersion(String version) {
39         this.version = version;
40     }
41
42     @Override
43     public String toString() {
44         return "Guard [version=" + version + "]";
45     }
46     
47     @Override
48     public int hashCode() {
49         final int prime = 31;
50         int result = 1;
51         result = prime * result + ((version == null) ? 0 : version.hashCode());
52         return result;
53     }
54     
55     @Override
56     public boolean equals(Object obj) {
57         if (this == obj) {
58             return true;
59         }
60         if (obj == null) {
61             return false;
62         }
63         if (getClass() != obj.getClass()) {
64             return false;
65         }
66         Guard other = (Guard) obj;
67         if (version == null) {
68             if (other.version != null) {
69                 return false;
70             }
71         } else if (!version.equals(other.version)) {
72             return false;
73         }
74         return true;
75     }
76 }