Source Code Cross Referenced for ClientConfigurationContext.java in  » Net » Terracotta » com » tc » object » 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 » Net » Terracotta » com.tc.object 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03:         * notice. All rights reserved.
04:         */
05:        package com.tc.object;
06:
07:        import com.tc.async.api.StageManager;
08:        import com.tc.async.impl.ConfigurationContextImpl;
09:        import com.tc.object.handshakemanager.ClientHandshakeManager;
10:        import com.tc.object.lockmanager.api.ClientLockManager;
11:        import com.tc.object.tx.ClientTransactionManager;
12:
13:        public class ClientConfigurationContext extends
14:                ConfigurationContextImpl {
15:
16:            public final static String LOCK_RESPONSE_STAGE = "lock_response_stage";
17:            public final static String LOCK_RECALL_STAGE = "lock_recall_stage";
18:            public final static String RECEIVE_ROOT_ID_STAGE = "receive_root_id_stage";
19:            public final static String RECEIVE_OBJECT_STAGE = "receive_object_stage";
20:            public final static String RECEIVE_TRANSACTION_STAGE = "receive_transaction_stage";
21:            public final static String OBJECT_ID_REQUEST_RESPONSE_STAGE = "object_id_request_response_stage";
22:            public final static String RECEIVE_TRANSACTION_COMPLETE_STAGE = "receive_transaction_complete_stage";
23:            public final static String HYDRATE_MESSAGE_STAGE = "hydrate_message_stage";
24:            public final static String BATCH_TXN_ACK_STAGE = "batch_txn_ack_stage";
25:            public static final String CONFIG_MESSAGE_STAGE = "config_message_stage";
26:            public static final String CLIENT_COORDINATION_STAGE = "client_coordination_stage";
27:            public static final String JMXREMOTE_TUNNEL_STAGE = "jmxremote_tunnel_stage";
28:            public static final String DMI_STAGE = "dmi_stage";
29:            public static final String LOCK_STATISTICS_RESPONSE_STAGE = "lock_statistics_response_stage";
30:
31:            private final ClientLockManager lockManager;
32:            private final RemoteObjectManager remoteObjectManager;
33:            private final ClientTransactionManager txManager;
34:            private final ClientHandshakeManager clientHandshakeManager;
35:
36:            public ClientConfigurationContext(StageManager stageManager,
37:                    ClientLockManager lockManager,
38:                    RemoteObjectManager remoteObjectManager,
39:                    ClientTransactionManager txManager,
40:                    ClientHandshakeManager clientHandshakeManager) {
41:                super (stageManager);
42:                this .lockManager = lockManager;
43:                this .remoteObjectManager = remoteObjectManager;
44:                this .txManager = txManager;
45:                this .clientHandshakeManager = clientHandshakeManager;
46:            }
47:
48:            public ClientLockManager getLockManager() {
49:                return lockManager;
50:            }
51:
52:            public RemoteObjectManager getObjectManager() {
53:                return remoteObjectManager;
54:            }
55:
56:            public ClientTransactionManager getTransactionManager() {
57:                return txManager;
58:            }
59:
60:            public ClientHandshakeManager getClientHandshakeManager() {
61:                return clientHandshakeManager;
62:            }
63:
64:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.