KickJava   Java API By Example, From Geeks To Geeks.

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


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 javax.ejb.EJBLocalObject JavaDoc;
22
23 import java.sql.Timestamp JavaDoc;
24
25 import cowsultants.itracker.ejb.client.models.ReportModel;
26
27 public interface ReportLocal extends EJBLocalObject JavaDoc {
28     public static final String JavaDoc JNDI_NAME = "ejb/ReportBean";
29     public static final String JavaDoc ID_NAME = "report";
30
31     public Integer JavaDoc getId();
32     public void setId(Integer JavaDoc value);
33
34     public String JavaDoc getName();
35     public void setName(String JavaDoc value);
36
37     public String JavaDoc getNameKey();
38     public void setNameKey(String JavaDoc value);
39
40     public String JavaDoc getDescription();
41     public void setDescription(String JavaDoc value);
42
43     public int getDataType();
44     public void setDataType(int value);
45
46     public int getReportType();
47     public void setReportType(int value);
48
49     public byte[] getFileData();
50     public void setFileData(byte[] value);
51
52     public String JavaDoc getClassName();
53     public void setClassName(String JavaDoc value);
54
55     public Timestamp JavaDoc getCreateDate();
56     public void setCreateDate(Timestamp JavaDoc value);
57
58     public Timestamp JavaDoc getLastModifiedDate();
59     public void setLastModifiedDate(Timestamp JavaDoc value);
60
61     public ReportModel getModel();
62     public void setModel(ReportModel model);
63 }
Popular Tags