1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.synchronoss.cpo.meta.bean;
22
23 public class CpoFunctionBean implements java.io.Serializable {
24
25 private static final long serialVersionUID = 1L;
26
27
28
29
30 private java.lang.String name;
31 private java.lang.String expression;
32 private java.lang.String description;
33
34 public CpoFunctionBean() {
35 }
36
37 public String getName() {
38 return name;
39 }
40
41 public void setName(String name) {
42 this.name = name;
43 }
44
45 public String getDescription() {
46 return description;
47 }
48
49 public void setDescription(String description) {
50 this.description = description;
51 }
52
53 public String getExpression() {
54 return expression;
55 }
56
57 public void setExpression(String expression) {
58 this.expression = expression;
59 }
60
61
62
63
64 @Override
65 public boolean equals(Object o) {
66 if (this == o) {
67 return true;
68 }
69 if (o == null || getClass() != o.getClass()) {
70 return false;
71 }
72
73 CpoFunctionBean that = (CpoFunctionBean) o;
74
75 if (getExpression() != null ? !getExpression().equals(that.getExpression()) : that.getExpression() != null) {
76 return false;
77 }
78 if (getDescription() != null ? !getDescription().equals(that.getDescription()) : that.getDescription() != null) {
79 return false;
80 }
81
82 return true;
83 }
84
85 @Override
86 public int hashCode() {
87 int result = 0;
88 result = 31 * result + getClass().getName().hashCode();
89 result = 31 * result + (getExpression() != null ? getExpression().hashCode() : 0);
90 result = 31 * result + (getDescription() != null ? getDescription().hashCode() : 0);
91 return result;
92 }
93
94 @Override
95 public String toString() {
96 StringBuilder str = new StringBuilder();
97 str.append("expression = " + getExpression() + "\n");
98 str.append("description = " + getDescription() + "\n");
99 return str.toString();
100 }
101 }