Java Doc for Customer.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas » stests » appli » 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 » JOnAS 4.8.6 » org.objectweb.jonas.stests.appli 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.objectweb.jonas.stests.appli.Customer

Customer
public interface Customer extends EJBObject(Code)
Customer remote interface




Method Summary
public  StringgetAddressLine1()
     Get the customer's address line 1.
public  StringgetAddressLine2()
     Get the customer's address line 2.
public  floatgetBalance()
     Get the customer's total outstanding balance.
public  StringgetCity()
     Get the customer's mailing address city.
public  floatgetCreditLimit()
     Get the customer's credit limit.
public  IntegergetCustomerID()
     Get the customer ID.
public  StringgetFirstName()
     Get the customer first name.
public  StringgetLastName()
     Get the customer last name.
public  StringgetMiddleInitials()
     Get the customer middle initials.
public  StringgetPhone()
     Get the customer phone number.
public  StringgetState()
     Get the customer's mailing address state.
public  floatgetYearToDateBalance()
     Get the customer's year-to-date outstanding balance.
public  StringgetZip()
     Get the customer's mailing address zip code.
public  voidsetAddressLine1(String line)
     Set the customer's address line 1.
public  voidsetAddressLine2(String line)
     Set the customer's address line 2.
public  voidsetBalance(float balance)
     Set the customer's total outstanding balance.
public  voidsetCity(String city)
     Set the customer's mailing address city.
public  voidsetCreditLimit(float limit)
     Set the credit limit.
public  voidsetFirstName(String fn)
     Set the customer first name.
public  voidsetLastName(String ln)
     Set the customer last name.
public  voidsetMiddleInitials(String mi)
     Set the customer initials.
public  voidsetPhone(String phone)
     Set the customer phone number.
public  voidsetState(String state)
     Set the customer's mailing address state.
public  voidsetYearToDateBalance(float ytdBalance)
     Set the customer's year-to-date outstanding balance.
public  voidsetZip(String zip)
     Set the customer's mailing address zip code.
public  voidupdateBalance(float orderAmount)
     Update the balance and year to date balance with the total amount from an order.



Method Detail
getAddressLine1
public String getAddressLine1() throws RemoteException(Code)
Get the customer's address line 1.

String
exception:
  java.rmi.RemoteException - Remote exception




getAddressLine2
public String getAddressLine2() throws RemoteException(Code)
Get the customer's address line 2.

String
exception:
  java.rmi.RemoteException - Remote exception




getBalance
public float getBalance() throws RemoteException(Code)
Get the customer's total outstanding balance.

String
exception:
  java.rmi.RemoteException - Remote exception




getCity
public String getCity() throws RemoteException(Code)
Get the customer's mailing address city.

String
exception:
  java.rmi.RemoteException - Remote exception




getCreditLimit
public float getCreditLimit() throws RemoteException(Code)
Get the customer's credit limit.

String
exception:
  java.rmi.RemoteException - Remote exception




getCustomerID
public Integer getCustomerID() throws RemoteException(Code)
Get the customer ID.

String
exception:
  java.rmi.RemoteException - Remote exception




getFirstName
public String getFirstName() throws RemoteException(Code)
Get the customer first name.

String
exception:
  java.rmi.RemoteException - Remote exception




getLastName
public String getLastName() throws RemoteException(Code)
Get the customer last name.

String
exception:
  java.rmi.RemoteException - Remote exception




getMiddleInitials
public String getMiddleInitials() throws RemoteException(Code)
Get the customer middle initials.

String
exception:
  java.rmi.RemoteException - Remote exception




getPhone
public String getPhone() throws RemoteException(Code)
Get the customer phone number.

String
exception:
  java.rmi.RemoteException - Remote exception




getState
public String getState() throws RemoteException(Code)
Get the customer's mailing address state.

String
exception:
  java.rmi.RemoteException - Remote exception




getYearToDateBalance
public float getYearToDateBalance() throws RemoteException(Code)
Get the customer's year-to-date outstanding balance.

String
exception:
  java.rmi.RemoteException - Remote exception




getZip
public String getZip() throws RemoteException(Code)
Get the customer's mailing address zip code.

String
exception:
  java.rmi.RemoteException - Remote exception




setAddressLine1
public void setAddressLine1(String line) throws RemoteException(Code)
Set the customer's address line 1.


Parameters:
  line - Customer address line 1 (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setAddressLine2
public void setAddressLine2(String line) throws RemoteException(Code)
Set the customer's address line 2.


Parameters:
  line - Customer address line 2 (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setBalance
public void setBalance(float balance) throws RemoteException(Code)
Set the customer's total outstanding balance.


Parameters:
  balance - Customer total outstanding balance (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setCity
public void setCity(String city) throws RemoteException(Code)
Set the customer's mailing address city.


Parameters:
  city - Customer city (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setCreditLimit
public void setCreditLimit(float limit) throws RemoteException(Code)
Set the credit limit.


Parameters:
  limit - New credit limit (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setFirstName
public void setFirstName(String fn) throws RemoteException(Code)
Set the customer first name.


Parameters:
  fn - Customer first name (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setLastName
public void setLastName(String ln) throws RemoteException(Code)
Set the customer last name.


Parameters:
  ln - Customer last name (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setMiddleInitials
public void setMiddleInitials(String mi) throws RemoteException(Code)
Set the customer initials.


Parameters:
  mi - Customer middle initial (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setPhone
public void setPhone(String phone) throws RemoteException(Code)
Set the customer phone number.


Parameters:
  phone - Customer phone number (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setState
public void setState(String state) throws RemoteException(Code)
Set the customer's mailing address state.


Parameters:
  state - Customer state (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setYearToDateBalance
public void setYearToDateBalance(float ytdBalance) throws RemoteException(Code)
Set the customer's year-to-date outstanding balance.


Parameters:
  ytdBalance - Customer year-to-date outstanding balance (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




setZip
public void setZip(String zip) throws RemoteException(Code)
Set the customer's mailing address zip code.


Parameters:
  zip - Customer zip code (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




updateBalance
public void updateBalance(float orderAmount) throws RemoteException(Code)
Update the balance and year to date balance with the total amount from an order.


Parameters:
  orderAmount - Order amount to update the balances with (Mandatory) void
exception:
  java.rmi.RemoteException - Remote exception




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.