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