View Javadoc
1   /*
2    * Copyright (C) 2003-2012 David E. Berry
3    *
4    * This library is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Lesser General Public
6    * License as published by the Free Software Foundation; either
7    * version 2.1 of the License, or (at your option) any later version.
8    *
9    * This library is distributed in the hope that it will be useful,
10   * but WITHOUT ANY WARRANTY; without even the implied warranty of
11   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   * Lesser General Public License for more details.
13   *
14   * You should have received a copy of the GNU Lesser General Public
15   * License along with this library; if not, write to the Free Software
16   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17   *
18   * A copy of the GNU Lesser General Public License may also be found at
19   * http://www.gnu.org/licenses/lgpl.txt
20   */
21  package org.synchronoss.cpo.meta.bean;
22  
23  public class CpoClassBean implements java.io.Serializable {
24  
25    private static final long serialVersionUID = 1L;
26  
27    /*
28     * Properties
29     */
30    private java.lang.String name;
31    private java.lang.String description;
32  
33    public CpoClassBean() {
34    }
35  
36    /*
37     * Getters and Setters
38     */
39    public java.lang.String getName() {
40      return this.name;
41    }
42  
43    public void setName(java.lang.String name) {
44      this.name = name;
45    }
46  
47    public String getDescription() {
48      return description;
49    }
50  
51    public void setDescription(String description) {
52      this.description = description;
53    }
54  
55    @Override
56    public boolean equals(Object o) {
57      if (this == o) {
58        return true;
59      }
60      if (o == null || getClass() != o.getClass()) {
61        return false;
62      }
63  
64      CpoClassBean that = (CpoClassBean) o;
65  
66      if (getName() != null ? !getName().equals(that.getName()) : that.getName() != null) {
67        return false;
68      }
69      if (getDescription() != null ? !getDescription().equals(that.getDescription()) : that.getDescription() != null) {
70        return false;
71      }
72  
73      return true;
74    }
75  
76    @Override
77    public int hashCode() {
78      int result = 0;
79      result = 31 * result + getClass().getName().hashCode();
80      result = 31 * result + (getName() != null ? getName().hashCode() : 0);
81      result = 31 * result + (getDescription() != null ? getDescription().hashCode() : 0);
82      return result;
83    }
84  
85    @Override
86    public String toString() {
87      StringBuilder str = new StringBuilder();
88      str.append("name = " + getName() + "\n");
89      str.append("description = " + getDescription() + "\n");
90      return str.toString();
91    }
92  }