Adding rest service for so monitoring
[so.git] / so-monitoring / so-monitoring-handler / src / main / java / org / onap / so / montoring / camunda / model / ProcessInstanceVariable.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.montoring.camunda.model;
21
22 import static org.onap.so.montoring.utils.ObjectEqualsUtils.isEqual;
23
24 import com.fasterxml.jackson.annotation.JsonIgnore;
25
26 /**
27  * @author waqas.ikram@ericsson.com
28  */
29 public class ProcessInstanceVariable {
30
31     private String name;
32     private Object value;
33     private String type;
34
35     public ProcessInstanceVariable() {}
36
37     /**
38      * @return the name
39      */
40     public String getName() {
41         return name;
42     }
43
44     /**
45      * @param name the name to set
46      */
47     public void setName(final String name) {
48         this.name = name;
49     }
50
51     /**
52      * @return the value
53      */
54     public Object getValue() {
55         return value;
56     }
57
58     /**
59      * @param value the value to set
60      */
61     public void setValue(final Object value) {
62         this.value = value;
63     }
64
65     /**
66      * @return the type
67      */
68     public String getType() {
69         return type;
70     }
71
72     /**
73      * @param type the type to set
74      */
75     public void setType(final String type) {
76         this.type = type;
77     }
78
79     @JsonIgnore
80     @Override
81     public int hashCode() {
82         final int prime = 31;
83         int result = 1;
84         result = prime * result + ((name == null) ? 0 : name.hashCode());
85         result = prime * result + ((value == null) ? 0 : value.hashCode());
86         result = prime * result + ((type == null) ? 0 : type.hashCode());
87         return result;
88     }
89
90     @JsonIgnore
91     @Override
92     public boolean equals(final Object obj) {
93         if (obj instanceof ProcessInstanceVariable) {
94             final ProcessInstanceVariable other = (ProcessInstanceVariable) obj;
95             return isEqual(name, other.name) && isEqual(value, other.value) && isEqual(type, other.type);
96         }
97
98         return false;
99     }
100
101     @JsonIgnore
102     @Override
103     public String toString() {
104         return "ProcessInstance [name=" + name + ", value=" + value + ", type=" + type + "]";
105     }
106 }