Source Code Cross Referenced for Employee.java in  » J2EE » Enhydra-Demos » projectmanagement » spec » employee » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » Enhydra Demos » projectmanagement.spec.employee 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *  ProjectManagement 
003:         *
004:         *  Enhydra super-servlet specification object
005:         *  
006:         */
007:        package projectmanagement.spec.employee;
008:
009:        import projectmanagement.spec.ProjectManagementException;
010:        import java.sql.Date;
011:
012:        public interface Employee {
013:
014:            public int getAuthLevel();
015:
016:            public String getHandle() throws ProjectManagementException;
017:
018:            public void setLogin(String login)
019:                    throws ProjectManagementException;
020:
021:            public String getLogin() throws ProjectManagementException;
022:
023:            public void setPassword(String password)
024:                    throws ProjectManagementException;
025:
026:            public String getPassword() throws ProjectManagementException;
027:
028:            public void setFirstName(String firstname)
029:                    throws ProjectManagementException;
030:
031:            public String getFirstName() throws ProjectManagementException;
032:
033:            public void setLastName(String lastname)
034:                    throws ProjectManagementException;
035:
036:            public String getLastName() throws ProjectManagementException;
037:
038:            public void setTitle(String title)
039:                    throws ProjectManagementException;
040:
041:            public String getTitle() throws ProjectManagementException;
042:
043:            public void setTitleOfCourtesy(String titleOfCourtesy)
044:                    throws ProjectManagementException;
045:
046:            public String getTitleOfCourtesy()
047:                    throws ProjectManagementException;
048:
049:            public void setBirthDate(Date birthDate)
050:                    throws ProjectManagementException;
051:
052:            public Date getBirthDate() throws ProjectManagementException;
053:
054:            public void setHireDate(Date hireDate)
055:                    throws ProjectManagementException;
056:
057:            public Date getHireDate() throws ProjectManagementException;
058:
059:            public void setAddress(String address)
060:                    throws ProjectManagementException;
061:
062:            public String getAddress() throws ProjectManagementException;
063:
064:            public void setCity(String city) throws ProjectManagementException;
065:
066:            public String getCity() throws ProjectManagementException;
067:
068:            public void setRegion(String region)
069:                    throws ProjectManagementException;
070:
071:            public String getRegion() throws ProjectManagementException;
072:
073:            public void setPostalCode(String postalCode)
074:                    throws ProjectManagementException;
075:
076:            public String getPostalCode() throws ProjectManagementException;
077:
078:            public void setCountry(String country)
079:                    throws ProjectManagementException;
080:
081:            public String getCountry() throws ProjectManagementException;
082:
083:            public void setHomePhone(String homePhone)
084:                    throws ProjectManagementException;
085:
086:            public String getHomePhone() throws ProjectManagementException;
087:
088:            public void setMobilePhone(String mobilePhone)
089:                    throws ProjectManagementException;
090:
091:            public String getMobilePhone() throws ProjectManagementException;
092:
093:            public void setEmail(String email)
094:                    throws ProjectManagementException;
095:
096:            public String getEmail() throws ProjectManagementException;
097:
098:            public void setNotes(String notes)
099:                    throws ProjectManagementException;
100:
101:            public String getNotes() throws ProjectManagementException;
102:
103:            public void setIsAdmin(boolean isAdmin)
104:                    throws ProjectManagementException;
105:
106:            public boolean getIsAdmin() throws ProjectManagementException;
107:
108:            public void save() throws ProjectManagementException;
109:
110:            public void delete() throws ProjectManagementException;
111:
112:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.