KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > dotmarketing > portlets > jobs > model > Searchfirm


1 package com.dotmarketing.portlets.jobs.model;
2
3 import java.io.Serializable JavaDoc;
4
5 import org.apache.commons.lang.builder.ToStringBuilder;
6
7 /** @author Hibernate CodeGenerator */
8 public class Searchfirm extends com.dotmarketing.beans.Inode implements Serializable JavaDoc {
9
10     /** nullable persistent field */
11     private String JavaDoc name;
12     
13     private String JavaDoc organization;
14
15     /** nullable persistent field */
16     private String JavaDoc title;
17
18     /** nullable persistent field */
19     private String JavaDoc streetaddress1;
20
21     /** nullable persistent field */
22     private String JavaDoc streetaddress2;
23
24     /** nullable persistent field */
25     private String JavaDoc phone;
26
27     /** nullable persistent field */
28     private String JavaDoc fax;
29
30     /** nullable persistent field */
31     private String JavaDoc email;
32
33     /** nullable persistent field */
34     private String JavaDoc url;
35
36     /** nullable persistent field */
37     private String JavaDoc description;
38
39     /** nullable persistent field */
40     private String JavaDoc contactinfo;
41
42     /** nullable persistent field */
43     private String JavaDoc cctype;
44
45     /** nullable persistent field */
46     private String JavaDoc ccnum;
47
48     /** nullable persistent field */
49     private String JavaDoc ccexp;
50
51     /** persistent field */
52     private java.util.Date JavaDoc creationdate;
53
54     /** nullable persistent field */
55     private java.util.Date JavaDoc expirationdate;
56
57     /** persistent field */
58     private boolean active;
59     private boolean linking;
60     
61
62     /** default constructor */
63     public Searchfirm() {
64         setType("search_firm");
65         this.creationdate = new java.util.Date JavaDoc();
66     }
67
68     public long getInode() {
69         return this.inode;
70     }
71
72     public void setInode(long inode) {
73         this.inode = inode;
74     }
75     public java.lang.String JavaDoc getName() {
76         return this.name;
77     }
78
79     public void setName(java.lang.String JavaDoc name) {
80         this.name = name;
81     }
82     public java.lang.String JavaDoc getTitle() {
83         return this.title;
84     }
85
86     public void setTitle(java.lang.String JavaDoc title) {
87         this.title = title;
88     }
89     public java.lang.String JavaDoc getStreetaddress1() {
90         return this.streetaddress1;
91     }
92
93     public void setStreetaddress1(java.lang.String JavaDoc streetaddress1) {
94         this.streetaddress1 = streetaddress1;
95     }
96     public java.lang.String JavaDoc getStreetaddress2() {
97         return this.streetaddress2;
98     }
99
100     public void setStreetaddress2(java.lang.String JavaDoc streetaddress2) {
101         this.streetaddress2 = streetaddress2;
102     }
103     public java.lang.String JavaDoc getPhone() {
104         return this.phone;
105     }
106
107     public void setPhone(java.lang.String JavaDoc phone) {
108         this.phone = phone;
109     }
110     public java.lang.String JavaDoc getFax() {
111         return this.fax;
112     }
113
114     public void setFax(java.lang.String JavaDoc fax) {
115         this.fax = fax;
116     }
117     public java.lang.String JavaDoc getEmail() {
118         return this.email;
119     }
120
121     public void setEmail(java.lang.String JavaDoc email) {
122         this.email = email;
123     }
124     public java.lang.String JavaDoc getUrl() {
125         return this.url;
126     }
127
128     public void setUrl(java.lang.String JavaDoc url) {
129         this.url = url;
130     }
131     public java.lang.String JavaDoc getDescription() {
132         return this.description;
133     }
134
135     public void setDescription(java.lang.String JavaDoc description) {
136         this.description = description;
137     }
138     public java.lang.String JavaDoc getContactinfo() {
139         return this.contactinfo;
140     }
141
142     public void setContactinfo(java.lang.String JavaDoc contactinfo) {
143         this.contactinfo = contactinfo;
144     }
145     public java.lang.String JavaDoc getCctype() {
146         return this.cctype;
147     }
148
149     public void setCctype(java.lang.String JavaDoc cctype) {
150         this.cctype = cctype;
151     }
152     public java.lang.String JavaDoc getCcnum() {
153         return this.ccnum;
154     }
155
156     public void setCcnum(java.lang.String JavaDoc ccnum) {
157         this.ccnum = ccnum;
158     }
159     public java.lang.String JavaDoc getCcexp() {
160         return this.ccexp;
161     }
162
163     public void setCcexp(java.lang.String JavaDoc ccexp) {
164         this.ccexp = ccexp;
165     }
166     public java.util.Date JavaDoc getCreationdate() {
167         return this.creationdate;
168     }
169
170     public void setCreationdate(java.util.Date JavaDoc creationdate) {
171         this.creationdate = creationdate;
172     }
173     public java.util.Date JavaDoc getExpirationdate() {
174         return this.expirationdate;
175     }
176
177     public void setExpirationdate(java.util.Date JavaDoc expirationdate) {
178         this.expirationdate = expirationdate;
179     }
180     
181     public String JavaDoc toString() {
182         return ToStringBuilder.reflectionToString(this);
183     }
184
185     /**
186      * Returns the organization.
187      * @return String
188      */

189     public String JavaDoc getOrganization() {
190         return organization;
191     }
192
193     /**
194      * Sets the organization.
195      * @param organization The organization to set
196      */

197     public void setOrganization(String JavaDoc organization) {
198         this.organization = organization;
199     }
200
201
202     /**
203      * @return Returns the active.
204      */

205     public boolean isActive() {
206         return active;
207     }
208     /**
209      * @param active The active to set.
210      */

211     public void setActive(boolean active) {
212         this.active = active;
213     }
214     /**
215      * @return Returns the linking.
216      */

217     public boolean isLinking() {
218         return linking;
219     }
220     /**
221      * @param linking The linking to set.
222      */

223     public void setLinking(boolean linking) {
224         this.linking = linking;
225     }
226 }
227
Popular Tags