KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cowsultants > itracker > ejb > beans > entity > ConfigurationBean


1 /*
2  * This software was designed and created by Jason Carroll.
3  * Copyright (c) 2002, 2003, 2004 Jason Carroll.
4  * The author can be reached at jcarroll@cowsultants.com
5  * ITracker website: http://www.cowsultants.com
6  * ITracker forums: http://www.cowsultants.com/phpBB/index.php
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it only 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  * This program 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
19 package cowsultants.itracker.ejb.beans.entity;
20
21 import java.util.*;
22 import java.sql.Timestamp JavaDoc;
23
24 import cowsultants.itracker.ejb.client.models.ConfigurationModel;
25
26 public abstract class ConfigurationBean extends GenericBean {
27
28     public abstract int getType();
29     public abstract void setType(int value);
30
31     public abstract int getOrder();
32     public abstract void setOrder(int value);
33
34     public abstract String JavaDoc getValue();
35     public abstract void setValue(String JavaDoc value);
36
37     public abstract String JavaDoc getVersion();
38     public abstract void setVersion(String JavaDoc value);
39
40     public ConfigurationModel getModel() {
41         ConfigurationModel model = new ConfigurationModel();
42         model.setId(this.getId());
43         model.setType(this.getType());
44         model.setOrder(this.getOrder());
45         model.setVersion(this.getVersion());
46         model.setValue(this.getValue());
47         model.setLastModifiedDate(this.getLastModifiedDate());
48         model.setCreateDate(this.getCreateDate());
49
50         return model;
51     }
52
53     public void setModel(ConfigurationModel model) {
54         this.setType(model.getType());
55         this.setOrder(model.getOrder());
56         this.setVersion(model.getVersion());
57         this.setValue(model.getValue());
58         this.setLastModifiedDate(new Timestamp JavaDoc(new Date().getTime()));
59     }
60
61 }
Popular Tags