Source Code Cross Referenced for Customer.java in  » J2EE » Enhydra-Demos » com » lutris » airsent » spec » customer » 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 » com.lutris.airsent.spec.customer 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
003:         * Reserved.
004:         * 
005:         * This source code file is distributed by Lutris Technologies, Inc. for
006:         * use only by licensed users of product(s) that include this source
007:         * file. Use of this source file or the software that uses it is covered
008:         * by the terms and conditions of the Lutris Enhydra Development License
009:         * Agreement included with this product.
010:         * 
011:         * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
012:         * ANY KIND, either express or implied. See the License for the specific terms
013:         * governing rights and limitations under the License.
014:         * 
015:         * Contributor(s):
016:         * 
017:         * $Id: Customer.java,v 1.1 2006-09-11 12:29:26 sinisa Exp $
018:         */
019:
020:        package com.lutris.airsent.spec.customer;
021:
022:        import com.lutris.airsent.spec.AirSentException;
023:        import com.lutris.airsent.spec.address.Address;
024:
025:        /**
026:         * Interface Customer
027:         * 
028:         * 
029:         * @author joseph shoop
030:         * @version %I%, %G%
031:         */
032:        public interface Customer extends java.io.Serializable {
033:
034:            /**
035:             * maximum size for business 
036:             */
037:            public static final int MAX_BUSINESS = 64;
038:
039:            /**
040:             * maximum size for login
041:             */
042:            public static final int MAX_LOGIN = 64;
043:
044:            /**
045:             * maximum size for password
046:             */
047:            public static final int MAX_PASSWORD = 64;
048:
049:            /**
050:             * maximum size for first name
051:             */
052:            public static final int MAX_FIRST_NAME = 32;
053:
054:            /**
055:             * maximum size for last name
056:             */
057:            public static final int MAX_LAST_NAME = 32;
058:
059:            /**
060:             * maximum size for email address
061:             */
062:            public static final int MAX_EMAIL = 32;
063:
064:            /**
065:             * Gets the customer handle.
066:             * 
067:             * @return database id
068:             * @exception if an error occurs
069:             */
070:            public String getHandle() throws AirSentException;
071:
072:            /**
073:             * Gets the first name.
074:             *
075:             * @exception if an error occurs
076:             */
077:            public String getFirstName() throws AirSentException;
078:
079:            /**
080:             * Sets the first name.
081:             *
082:             * @exception if an error occurs
083:             */
084:            public void setFirstName(String first) throws AirSentException;
085:
086:            /**
087:             * Gets the last name.
088:             *
089:             * @return last name
090:             * @exception if an error occurs
091:             */
092:            public String getLastName() throws AirSentException;
093:
094:            /**
095:             * Set the last name.
096:             *
097:             * @param last last name
098:             * @exception if an error occurs
099:             */
100:            public void setLastName(String last) throws AirSentException;
101:
102:            /**
103:             * Gets the email.
104:             *
105:             * @return email address
106:             * @exception if an error occurs
107:             */
108:            public String getEmail() throws AirSentException;
109:
110:            /**
111:             * Sets the email.
112:             *
113:             * @param email email address
114:             * @exception if an error occurs
115:             */
116:            public void setEmail(String email) throws AirSentException;
117:
118:            /**
119:             * Gets the address.
120:             *
121:             * @return address
122:             * @exception if an error occurs
123:             */
124:            public Address getAddress() throws AirSentException;
125:
126:            /**
127:             * Gets the business.
128:             *
129:             * @return business
130:             * @exception if an error occurs
131:             */
132:            public String getBusiness() throws AirSentException;
133:
134:            /**
135:             * Sets the business.
136:             *
137:             * @param business business
138:             * @exception if an error occurs
139:             */
140:            public void setBusiness(String business) throws AirSentException;
141:
142:            /**
143:             * Gets the login.
144:             *
145:             * @return login name
146:             * @exception if an error occurs
147:             */
148:            public String getLogin() throws AirSentException;
149:
150:            /**
151:             * Sets the login.
152:             *
153:             * @param login login name
154:             * @exception if an error occurs
155:             */
156:            public void setLogin(String login) throws AirSentException;
157:
158:            /**
159:             * Gets the password.
160:             *
161:             * @return password
162:             * @exception if an error occurs
163:             */
164:            public String getPassword() throws AirSentException;
165:
166:            /**
167:             * Sets the password.
168:             *
169:             * @param password password
170:             * @exception if an error occurs
171:             */
172:            public void setPassword(String password) throws AirSentException;
173:
174:            /**
175:             * Saves the customer.
176:             *
177:             * @exception if an error occurs
178:             */
179:            public void save() throws AirSentException;
180:
181:            /**
182:             * Deletes the customer.
183:             *
184:             * @exception if an error occurs
185:             */
186:            public void delete() throws AirSentException;
187:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.