Source Code Cross Referenced for Stock.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 Referenced  Class Diagram Java Document (Java Doc) 


001:        // Stock.java
002:
003:        package org.objectweb.jonas.stests.appli;
004:
005:        import java.rmi.RemoteException;
006:        import javax.ejb.EJBObject;
007:
008:        /**
009:         * Stock remote interface
010:         */
011:        public interface Stock extends EJBObject {
012:            /**
013:             * Get the warehouse id.
014:             * <p>
015:             * @return String
016:             * @exception java.rmi.RemoteException Remote exception
017:             */
018:
019:            public String getWarehouseID() throws RemoteException;
020:
021:            public Integer getItemID() throws RemoteException;
022:
023:            /**
024:             * Get the Stock Quantity 
025:             * <p>
026:             * @return integer
027:             * @exception java.rmi.RemoteException Remote exception
028:             */
029:
030:            public int getStockQuantity() throws RemoteException;
031:
032:            /**
033:             * Increase the stock quantity   by a quantity
034:             * <p>
035:             * @param integer quantity <i>(Mandatory)</i>
036:             * @return void
037:             * @exception java.rmi.RemoteException Remote exception
038:             */
039:            public void increaseStockQuantity(int stockQty)
040:                    throws RemoteException;
041:
042:            /**
043:             * Decrease the stock quantity   by a quantity
044:             * <p>
045:             * @param integer quantity <i>(Mandatory)</i>
046:             * @return void
047:             * @exception java.rmi.RemoteException Remote exception
048:             */
049:            public void decreaseStockQuantity(int stockQty)
050:                    throws RemoteException;
051:
052:            /**
053:             * Get the Year to Date Quantity 
054:             * <p>
055:             * @param none <i>(Mandatory)</i>
056:             * @return integer
057:             * @exception java.rmi.RemoteException Remote exception
058:             */
059:
060:            public int getYearToDate() throws RemoteException;
061:
062:            /**
063:             * Increase the Year to date quantity   by a quantity
064:             * <p>
065:             * @param integer quantity <i>(Mandatory)</i>
066:             * @return void
067:             * @exception java.rmi.RemoteException Remote exception
068:             */
069:            public void increaseYearToDate(int qty) throws RemoteException;
070:
071:            /**
072:             * Decrease the Year to date quantity   by a quantity
073:             * <p>
074:             * @param integer quantity <i>(Mandatory)</i>
075:             * @return void
076:             * @exception java.rmi.RemoteException Remote exception
077:             */
078:
079:            public void decreaseYearToDate(int qty) throws RemoteException;
080:
081:            /**
082:             * Get the Order Quantity 
083:             * <p>
084:             * @param none <i>(Mandatory)</i>
085:             * @return integer
086:             * @exception java.rmi.RemoteException Remote exception
087:             */
088:
089:            public int getOrderQuantity() throws RemoteException;
090:
091:            /**
092:             * Increase the Order Quantity by a quantity
093:             * <p>
094:             * @param integer quantity <i>(Mandatory)</i>
095:             * @return void
096:             * @exception java.rmi.RemoteException Remote exception
097:             */
098:
099:            public void increaseOrderQuantity(int qty) throws RemoteException;
100:
101:            /**
102:             * Decrease the Order Quantity by a quantity
103:             * <p>
104:             * @param integer quantity <i>(Mandatory)</i>
105:             * @return void
106:             * @exception java.rmi.RemoteException Remote exception
107:             */
108:
109:            public void decreaseOrderQuantity(int qty) throws RemoteException;
110:
111:            /**
112:             * Get the Remote Order Quantity 
113:             * <p>
114:             * @param none <i>(Mandatory)</i>
115:             * @return integer
116:             * @exception java.rmi.RemoteException Remote exception
117:             */
118:
119:            public int getRemOrderQuantity() throws RemoteException;
120:
121:            /** Increase the Remote Order Quantity by a quantity
122:             * <p>
123:             * @param integer quantity <i>(Mandatory)</i>
124:             * @return void
125:             * @exception java.rmi.RemoteException Remote exception
126:             */
127:
128:            public void increaseRemOrderQuantity(int qty)
129:                    throws RemoteException;
130:
131:            /**
132:             * Decrease the Remote Order Quantity by a quantity
133:             * <p>
134:             * @param integer quantity <i>(Mandatory)</i>
135:             * @return void
136:             * @exception java.rmi.RemoteException Remote exception
137:             */
138:
139:            public void decreaseRemOrderQuantity(int qty)
140:                    throws RemoteException;
141:
142:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.