KickJava   Java API By Example, From Geeks To Geeks.

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


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 import javax.ejb.FinderException JavaDoc;
23
24 import java.util.Date JavaDoc;
25 import java.util.Collection JavaDoc;
26 import java.sql.Timestamp JavaDoc;
27
28 import cowsultants.itracker.ejb.client.models.ProjectModel;
29
30 public interface ProjectLocal extends EJBLocalObject JavaDoc {
31     public static final String JavaDoc JNDI_NAME = "ejb/ProjectBean";
32     public static final String JavaDoc ID_NAME = "project";
33
34     public Integer JavaDoc getId();
35     public void setId(Integer JavaDoc value);
36
37     public String JavaDoc getName();
38     public void setName(String JavaDoc value);
39
40     public String JavaDoc getDescription();
41     public void setDescription(String JavaDoc value);
42
43     public int getStatus();
44     public void setStatus(int value);
45
46     public int getOptions();
47     public void setOptions(int value);
48
49     public Timestamp JavaDoc getCreateDate();
50     public void setCreateDate(Timestamp JavaDoc value);
51
52     public Timestamp JavaDoc getLastModifiedDate();
53     public void setLastModifiedDate(Timestamp JavaDoc value);
54
55     public Collection JavaDoc getComponents();
56     public void setComponents(Collection JavaDoc value);
57
58     public Collection JavaDoc getCustomFields();
59     public void setCustomFields(Collection JavaDoc customFields);
60
61     public Collection JavaDoc getOwners();
62     public void setOwners(Collection JavaDoc owners);
63
64     public Collection JavaDoc getPermissions();
65     public void setPermissions(Collection JavaDoc permissions);
66
67     public Collection JavaDoc getVersions();
68     public void setVersions(Collection JavaDoc value);
69
70     public int getTotalNumberIssues();
71
72     public ProjectModel getModel();
73     public void setModel(ProjectModel model);
74 }
Popular Tags