76d20113dd15a1b163b7808e41c7ac4d95ced293
[mir.git] / source / mir / core / model / Feature.java
1 /*
2  * Feature.java
3  * 
4  * Copyright (C) 2001, 2002, 2003 The Mir-coders group
5  *
6  * This file is part of Mir.
7  *
8  * Mir is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Mir is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with Mir; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * In addition, as a special exception, The Mir-coders gives permission to link
23  * the code of this program with  any library licensed under the Apache Software License,
24  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
25  * (or with modified versions of the above that use the same license as the above),
26  * and distribute linked combinations including the two.  You must obey the
27  * GNU General Public License in all respects for all of the code used other than
28  * the above mentioned libraries.  If you modify this file, you may extend this
29  * exception to your version of the file, but you are not obligated to do so.
30  * If you do not wish to do so, delete this exception statement from your version.
31  */
32 package mir.core.model;
33
34 import java.io.Serializable;
35
36 import org.apache.commons.lang.builder.EqualsBuilder;
37 import org.apache.commons.lang.builder.HashCodeBuilder;
38 import org.apache.commons.lang.builder.ToStringBuilder;
39
40 /**
41  * 
42  * Feature
43  * @author idefix
44  * @version $Id: Feature.java,v 1.3 2003/09/05 20:23:59 idfx Exp $
45  */
46 public class Feature implements Serializable {
47
48     /** identifier field */
49     private Integer id;
50
51     /** persistent field */
52     private String title;
53
54     /** nullable persistent field */
55     private String description;
56
57     /** persistent field */
58     private String filename;
59
60     /** nullable persistent field */
61     private String mainUrl;
62
63     /** persistent field */
64     private boolean isPublished;
65
66     /** full constructor */
67     public Feature(java.lang.String title, java.lang.String description, java.lang.String filename, java.lang.String mainUrl, boolean isPublished) {
68         this.title = title;
69         this.description = description;
70         this.filename = filename;
71         this.mainUrl = mainUrl;
72         this.isPublished = isPublished;
73     }
74
75     /** default constructor */
76     public Feature() {
77     }
78
79     /** minimal constructor */
80     public Feature(java.lang.String title, java.lang.String filename, boolean isPublished) {
81         this.title = title;
82         this.filename = filename;
83         this.isPublished = isPublished;
84     }
85
86     public java.lang.Integer getId() {
87         return this.id;
88     }
89
90     public void setId(java.lang.Integer id) {
91         this.id = id;
92     }
93
94     public java.lang.String getTitle() {
95         return this.title;
96     }
97
98     public void setTitle(java.lang.String title) {
99         this.title = title;
100     }
101
102     public java.lang.String getDescription() {
103         return this.description;
104     }
105
106     public void setDescription(java.lang.String description) {
107         this.description = description;
108     }
109
110     public java.lang.String getFilename() {
111         return this.filename;
112     }
113
114     public void setFilename(java.lang.String filename) {
115         this.filename = filename;
116     }
117
118     public java.lang.String getMainUrl() {
119         return this.mainUrl;
120     }
121
122     public void setMainUrl(java.lang.String mainUrl) {
123         this.mainUrl = mainUrl;
124     }
125
126     public boolean isPublished() {
127         return this.isPublished;
128     }
129
130     public void setPublished(boolean isPublished) {
131         this.isPublished = isPublished;
132     }
133
134     public String toString() {
135         return new ToStringBuilder(this)
136             .append("id", getId())
137             .toString();
138     }
139
140     public boolean equals(Object other) {
141         if ( !(other instanceof Feature) ) return false;
142         Feature castOther = (Feature) other;
143         return new EqualsBuilder()
144             .append(this.getId(), castOther.getId())
145             .isEquals();
146     }
147
148     public int hashCode() {
149         return new HashCodeBuilder()
150             .append(getId())
151             .toHashCode();
152     }
153
154 }