001    /*
002     * 
003     * $Revision: 13085 $ $Date: 2008-02-06 18:27:24 +0100 (Mi, 06 Feb 2008) $
004     *
005     * This file is part of ***  M y C o R e  ***
006     * See http://www.mycore.de/ for details.
007     *
008     * This program is free software; you can use it, redistribute it
009     * and / or modify it under the terms of the GNU General Public License
010     * (GPL) as published by the Free Software Foundation; either version 2
011     * of the License or (at your option) any later version.
012     *
013     * This program is distributed in the hope that it will be useful, but
014     * WITHOUT ANY WARRANTY; without even the implied warranty of
015     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
016     * GNU General Public License for more details.
017     *
018     * You should have received a copy of the GNU General Public License
019     * along with this program, in a file called gpl.txt or license.txt.
020     * If not, write to the Free Software Foundation Inc.,
021     * 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA
022     */
023    
024    package org.mycore.backend.hibernate.tables;
025    
026    import java.util.Date;
027    
028    public class MCRFSNODES {
029        private String id;
030    
031        private String pid;
032    
033        private String type;
034    
035        private String owner;
036    
037        private String name;
038    
039        private String label;
040    
041        private long size;
042    
043        private Date date;
044    
045        private String storeid;
046    
047        private String storageid;
048    
049        private String fctid;
050    
051        private String md5;
052    
053        private int numchdd;
054    
055        private int numchdf;
056    
057        private int numchtd;
058    
059        private int numchtf;
060    
061        /**
062         * @hibernate.property column="ID" not-null="true" update="true"
063         */
064        public String getId() {
065            return id;
066        }
067    
068        public void setId(String id) {
069            this.id = id;
070        }
071    
072        /**
073         * @hibernate.property column="PID" not-null="true" update="true"
074         */
075        public String getPid() {
076            return pid;
077        }
078    
079        public void setPid(String pid) {
080            this.pid = pid;
081        }
082    
083        /**
084         * @hibernate.property column="TYPE" not-null="true" update="true"
085         */
086        public String getType() {
087            return type;
088        }
089    
090        public void setType(String type) {
091            this.type = type;
092        }
093    
094        /**
095         * @hibernate.property column="OWNER" not-null="true" update="true"
096         */
097        public String getOwner() {
098            return owner;
099        }
100    
101        public void setOwner(String owner) {
102            this.owner = owner;
103        }
104    
105        /**
106         * @hibernate.property column="NAME" not-null="true" update="true"
107         */
108        public String getName() {
109            return name;
110        }
111    
112        public void setName(String name) {
113            this.name = name;
114        }
115    
116        /**
117         * @hibernate.property column="LABEL" not-null="true" update="true"
118         */
119        public String getLabel() {
120            return label;
121        }
122    
123        public void setLabel(String label) {
124            this.label = label;
125        }
126    
127        /**
128         * @hibernate.property column="SIZE" not-null="true" update="true"
129         */
130        public long getSize() {
131            return size;
132        }
133    
134        public void setSize(long size) {
135            this.size = size;
136        }
137    
138        /**
139         * @hibernate.property column="DATE" not-null="true" update="true"
140         */
141        public Date getDate() {
142            return date;
143        }
144    
145        public void setDate(Date date) {
146            this.date = date;
147        }
148    
149        /**
150         * @hibernate.property column="STOREID" not-null="true" update="true"
151         */
152        public String getStoreid() {
153            return storeid;
154        }
155    
156        public void setStoreid(String storeid) {
157            this.storeid = storeid;
158        }
159    
160        /**
161         * @hibernate.property column="STORAGEID" not-null="true" update="true"
162         */
163        public String getStorageid() {
164            return storageid;
165        }
166    
167        public void setStorageid(String storageid) {
168            this.storageid = storageid;
169        }
170    
171        /**
172         * @hibernate.property column="FCTID" not-null="true" update="true"
173         */
174        public String getFctid() {
175            return fctid;
176        }
177    
178        public void setFctid(String fctid) {
179            this.fctid = fctid;
180        }
181    
182        /**
183         * @hibernate.property column="MD5" not-null="true" update="true"
184         */
185        public String getMd5() {
186            return md5;
187        }
188    
189        public void setMd5(String md5) {
190            this.md5 = md5;
191        }
192    
193        /**
194         * @hibernate.property column="NUMCHDD" not-null="true" update="true"
195         */
196        public int getNumchdd() {
197            return numchdd;
198        }
199    
200        public void setNumchdd(int numchdd) {
201            this.numchdd = numchdd;
202        }
203    
204        /**
205         * @hibernate.property column="NUMCHDF" not-null="true" update="true"
206         */
207        public int getNumchdf() {
208            return numchdf;
209        }
210    
211        public void setNumchdf(int numchdf) {
212            this.numchdf = numchdf;
213        }
214    
215        /**
216         * @hibernate.property column="NUMCHTD" not-null="true" update="true"
217         */
218        public int getNumchtd() {
219            return numchtd;
220        }
221    
222        public void setNumchtd(int numchtd) {
223            this.numchtd = numchtd;
224        }
225    
226        /**
227         * @hibernate.property column="NUMCHTF" not-null="true" update="true"
228         */
229        public int getNumchtf() {
230            return numchtf;
231        }
232    
233        public void setNumchtf(int numchtf) {
234            this.numchtf = numchtf;
235        }
236    }