working on struts/hibernate for content-admin
[mir.git] / source / mir / core / model / Topic.java
1 /*
2  * TopicStub.java created on 30.08.2003
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 import java.util.Set;
36
37 import org.apache.commons.lang.builder.EqualsBuilder;
38 import org.apache.commons.lang.builder.HashCodeBuilder;
39 import org.apache.commons.lang.builder.ToStringBuilder;
40
41 /**
42  * TopicStub
43  * @author idefix
44  * @version $Id: Topic.java,v 1.6 2003/12/20 20:27:09 idfx Exp $
45  */
46 public class Topic implements Serializable, ITopic {
47         /** identifier field */
48         private Integer id;
49         /** persistent field */
50         private String title;
51         /** nullable persistent field */
52         private String description;
53         /** persistent field */
54         private String filename;
55         /** nullable persistent field */
56         private String mainUrl;
57         /** nullable persistent field */
58         private String archivUrl;
59         private Set childTopics;
60         private Topic parentTopic;
61
62         /**
63          * 
64          */
65         public Topic() {
66                 super();
67         }
68
69         /**
70          * @return
71          */
72         public String getArchivUrl() {
73                 return archivUrl;
74         }
75
76         /**
77          * @return
78          */
79         public String getDescription() {
80                 return description;
81         }
82
83         /**
84          * @return
85          */
86         public String getFilename() {
87                 return filename;
88         }
89
90         /**
91          * @return
92          */
93         public Integer getId() {
94                 return id;
95         }
96
97         /**
98          * @return
99          */
100         public String getMainUrl() {
101                 return mainUrl;
102         }
103
104         /**
105          * @return
106          */
107         public String getTitle() {
108                 return title;
109         }
110
111         /**
112          * @param string
113          */
114         public void setArchivUrl(String string) {
115                 archivUrl = string;
116         }
117
118         /**
119          * @param string
120          */
121         public void setDescription(String string) {
122                 description = string;
123         }
124
125         /**
126          * @param string
127          */
128         public void setFilename(String string) {
129                 filename = string;
130         }
131
132         /**
133          * @param integer
134          */
135         public void setId(Integer integer) {
136                 id = integer;
137         }
138
139         /**
140          * @param string
141          */
142         public void setMainUrl(String string) {
143                 mainUrl = string;
144         }
145
146         /**
147          * @param string
148          */
149         public void setTitle(String string) {
150                 title = string;
151         }
152
153         /**
154          * @return
155          */
156         public Set getChildTopics() {
157                 return childTopics;
158         }
159
160         /**
161          * @param set
162          */
163         public void setChildTopics(Set set) {
164                 childTopics = set;
165         }
166
167         /**
168          * @return
169          */
170         public Topic getParentTopic() {
171                 return parentTopic;
172         }
173
174         /**
175          * @param topic
176          */
177         public void setParentTopic(Topic topic) {
178                 parentTopic = topic;
179         }
180
181         public String toString() {
182                 return new ToStringBuilder(this)
183                         .append("id", getId())
184                         .append("title", getTitle())
185                         .toString();
186         }
187
188         public boolean equals(Object other) {
189                 if (!(other instanceof Topic))
190                         return false;
191                 Topic castOther = (Topic) other;
192                 return new EqualsBuilder()
193                         .append(this.getId(), castOther.getId())
194                         .isEquals();
195         }
196
197         public int hashCode() {
198                 return new HashCodeBuilder().append(getId()).toHashCode();
199         }
200 }