Source Code Cross Referenced for DmsCallbackHandler.java in  » Content-Management-System » contineo » org » contineo » web » ws » 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 » Content Management System » contineo » org.contineo.web.ws 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * DmsCallbackHandler.java
003:         *
004:         * This file was auto-generated from WSDL
005:         * by the Apache Axis2 version: 1.3  Built on : Aug 10, 2007 (04:45:47 LKT)
006:         */package org.contineo.web.ws;
007:
008:        /**
009:         *  DmsCallbackHandler Callback class, Users can extend this class and implement
010:         *  their own receiveResult and receiveError methods.
011:         */
012:        public abstract class DmsCallbackHandler {
013:            protected Object clientData;
014:
015:            /**
016:             * User can pass in any object that needs to be accessed once the NonBlocking
017:             * Web service call is finished and appropriate method of this CallBack is called.
018:             * @param clientData Object mechanism by which the user can pass in user data
019:             * that will be avilable at the time this callback is called.
020:             */
021:            public DmsCallbackHandler(Object clientData) {
022:                this .clientData = clientData;
023:            }
024:
025:            /**
026:             * Please use this constructor if you don't want to set any clientData
027:             */
028:            public DmsCallbackHandler() {
029:                this .clientData = null;
030:            }
031:
032:            /**
033:             * Get the client data
034:             */
035:            public Object getClientData() {
036:                return clientData;
037:            }
038:
039:            /**
040:             * auto generated Axis2 call back method for downloadDocumentInfo method
041:             * override this method for handling normal response from downloadDocumentInfo operation
042:             */
043:            public void receiveResultdownloadDocumentInfo(
044:                    org.contineo.web.ws.DmsStub.DownloadDocumentInfoResponse result) {
045:            }
046:
047:            /**
048:             * auto generated Axis2 Error handler
049:             * override this method for handling error response from downloadDocumentInfo operation
050:             */
051:            public void receiveErrordownloadDocumentInfo(java.lang.Exception e) {
052:            }
053:
054:            /**
055:             * auto generated Axis2 call back method for deleteFolder method
056:             * override this method for handling normal response from deleteFolder operation
057:             */
058:            public void receiveResultdeleteFolder(
059:                    org.contineo.web.ws.DmsStub.DeleteFolderResponse result) {
060:            }
061:
062:            /**
063:             * auto generated Axis2 Error handler
064:             * override this method for handling error response from deleteFolder operation
065:             */
066:            public void receiveErrordeleteFolder(java.lang.Exception e) {
067:            }
068:
069:            /**
070:             * auto generated Axis2 call back method for downloadDocument method
071:             * override this method for handling normal response from downloadDocument operation
072:             */
073:            public void receiveResultdownloadDocument(
074:                    org.contineo.web.ws.DmsStub.DownloadDocumentResponse result) {
075:            }
076:
077:            /**
078:             * auto generated Axis2 Error handler
079:             * override this method for handling error response from downloadDocument operation
080:             */
081:            public void receiveErrordownloadDocument(java.lang.Exception e) {
082:            }
083:
084:            /**
085:             * auto generated Axis2 call back method for createFolder method
086:             * override this method for handling normal response from createFolder operation
087:             */
088:            public void receiveResultcreateFolder(
089:                    org.contineo.web.ws.DmsStub.CreateFolderResponse result) {
090:            }
091:
092:            /**
093:             * auto generated Axis2 Error handler
094:             * override this method for handling error response from createFolder operation
095:             */
096:            public void receiveErrorcreateFolder(java.lang.Exception e) {
097:            }
098:
099:            /**
100:             * auto generated Axis2 call back method for downloadFolderContent method
101:             * override this method for handling normal response from downloadFolderContent operation
102:             */
103:            public void receiveResultdownloadFolderContent(
104:                    org.contineo.web.ws.DmsStub.DownloadFolderContentResponse result) {
105:            }
106:
107:            /**
108:             * auto generated Axis2 Error handler
109:             * override this method for handling error response from downloadFolderContent operation
110:             */
111:            public void receiveErrordownloadFolderContent(java.lang.Exception e) {
112:            }
113:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.