Source Code Cross Referenced for POAOperations.java in  » Collaboration » JacORB » org » omg » PortableServer » 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 » Collaboration » JacORB » org.omg.PortableServer 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
002:               duplicate and use this code are hereby granted provided that this
003:               copyright notice is included.
004:         *****/package org.omg.PortableServer;
005:
006:        public interface POAOperations {
007:
008:            public org.omg.PortableServer.POA create_POA(
009:                    java.lang.String adapter_name,
010:                    org.omg.PortableServer.POAManager a_POAManager,
011:                    org.omg.CORBA.Policy[] policies)
012:                    throws org.omg.PortableServer.POAPackage.AdapterAlreadyExists,
013:                    org.omg.PortableServer.POAPackage.InvalidPolicy;
014:
015:            public org.omg.PortableServer.POA find_POA(
016:                    java.lang.String adapter_name, boolean activate_it)
017:                    throws org.omg.PortableServer.POAPackage.AdapterNonExistent;
018:
019:            void destroy(boolean etherealize_objects,
020:                    boolean wait_for_completion);
021:
022:            public org.omg.PortableServer.ThreadPolicy create_thread_policy(
023:                    org.omg.PortableServer.ThreadPolicyValue value);
024:
025:            public org.omg.PortableServer.LifespanPolicy create_lifespan_policy(
026:                    org.omg.PortableServer.LifespanPolicyValue value);
027:
028:            public org.omg.PortableServer.IdUniquenessPolicy create_id_uniqueness_policy(
029:                    org.omg.PortableServer.IdUniquenessPolicyValue value);
030:
031:            public org.omg.PortableServer.IdAssignmentPolicy create_id_assignment_policy(
032:                    org.omg.PortableServer.IdAssignmentPolicyValue value);
033:
034:            public org.omg.PortableServer.ImplicitActivationPolicy create_implicit_activation_policy(
035:                    org.omg.PortableServer.ImplicitActivationPolicyValue value);
036:
037:            public org.omg.PortableServer.ServantRetentionPolicy create_servant_retention_policy(
038:                    org.omg.PortableServer.ServantRetentionPolicyValue value);
039:
040:            public org.omg.PortableServer.RequestProcessingPolicy create_request_processing_policy(
041:                    org.omg.PortableServer.RequestProcessingPolicyValue value);
042:
043:            public java.lang.String the_name();
044:
045:            public org.omg.PortableServer.POA the_parent();
046:
047:            public org.omg.PortableServer.POA[] the_children();
048:
049:            public org.omg.PortableServer.POAManager the_POAManager();
050:
051:            public org.omg.PortableServer.AdapterActivator the_activator();
052:
053:            public void the_activator(
054:                    org.omg.PortableServer.AdapterActivator the_activator);
055:
056:            public org.omg.PortableServer.ServantManager get_servant_manager()
057:                    throws org.omg.PortableServer.POAPackage.WrongPolicy;
058:
059:            public void set_servant_manager(
060:                    org.omg.PortableServer.ServantManager imgr)
061:                    throws org.omg.PortableServer.POAPackage.WrongPolicy;
062:
063:            public org.omg.PortableServer.Servant get_servant()
064:                    throws org.omg.PortableServer.POAPackage.NoServant,
065:                    org.omg.PortableServer.POAPackage.WrongPolicy;
066:
067:            public void set_servant(org.omg.PortableServer.Servant p_servant)
068:                    throws org.omg.PortableServer.POAPackage.WrongPolicy;
069:
070:            public byte[] activate_object(
071:                    org.omg.PortableServer.Servant p_servant)
072:                    throws org.omg.PortableServer.POAPackage.ServantAlreadyActive,
073:                    org.omg.PortableServer.POAPackage.WrongPolicy;
074:
075:            public void activate_object_with_id(byte[] id,
076:                    org.omg.PortableServer.Servant p_servant)
077:                    throws org.omg.PortableServer.POAPackage.ServantAlreadyActive,
078:                    org.omg.PortableServer.POAPackage.ObjectAlreadyActive,
079:                    org.omg.PortableServer.POAPackage.WrongPolicy;
080:
081:            public void deactivate_object(byte[] oid)
082:                    throws org.omg.PortableServer.POAPackage.ObjectNotActive,
083:                    org.omg.PortableServer.POAPackage.WrongPolicy;
084:
085:            public org.omg.CORBA.Object create_reference(java.lang.String intf)
086:                    throws org.omg.PortableServer.POAPackage.WrongPolicy;
087:
088:            public org.omg.CORBA.Object create_reference_with_id(byte[] oid,
089:                    java.lang.String intf)
090:                    throws org.omg.PortableServer.POAPackage.WrongPolicy;
091:
092:            public byte[] servant_to_id(org.omg.PortableServer.Servant p_servant)
093:                    throws org.omg.PortableServer.POAPackage.ServantNotActive,
094:                    org.omg.PortableServer.POAPackage.WrongPolicy;
095:
096:            public org.omg.CORBA.Object servant_to_reference(
097:                    org.omg.PortableServer.Servant p_servant)
098:                    throws org.omg.PortableServer.POAPackage.ServantNotActive,
099:                    org.omg.PortableServer.POAPackage.WrongPolicy;
100:
101:            public org.omg.PortableServer.Servant reference_to_servant(
102:                    org.omg.CORBA.Object reference)
103:                    throws org.omg.PortableServer.POAPackage.ObjectNotActive,
104:                    org.omg.PortableServer.POAPackage.WrongPolicy;
105:
106:            public byte[] reference_to_id(org.omg.CORBA.Object reference)
107:                    throws org.omg.PortableServer.POAPackage.WrongAdapter,
108:                    org.omg.PortableServer.POAPackage.WrongPolicy;
109:
110:            public org.omg.PortableServer.Servant id_to_servant(byte[] oid)
111:                    throws org.omg.PortableServer.POAPackage.ObjectNotActive,
112:                    org.omg.PortableServer.POAPackage.WrongPolicy;
113:
114:            public org.omg.CORBA.Object id_to_reference(byte[] oid)
115:                    throws org.omg.PortableServer.POAPackage.ObjectNotActive,
116:                    org.omg.PortableServer.POAPackage.WrongPolicy;
117:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.