Java Doc for EnvironmentContext.java in  » ESB » open-esb » com » sun » jbi » 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 » ESB » open esb » com.sun.jbi 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.sun.jbi.EnvironmentContext

All known Subclasses:   com.sun.jbi.framework.ScaffoldEnvironmentContext,  com.sun.jbi.management.system.ScaffoldedEnvironmentContext,  com.sun.jbi.messaging.NMRContext,  com.sun.jbi.framework.EnvironmentContext,  com.sun.jbi.management.system.ScaffoldEnvironmentContext,  com.sun.jbi.internal.security.SampleEnvironmentContext,  com.sun.jbi.util.ScaffoldEnvironmentContext,
EnvironmentContext
public interface EnvironmentContext (Code)
This context contains data needed by all components and services running in the JBI environment. This interface defines only methods that are not part of the JBI specification.
author:
   Sun Microsystems, Inc.




Method Summary
 StringgetAppServerInstallRoot()
     Get the AppServer installation root directory.
 StringgetAppServerInstanceRoot()
     Get the AppServer instance root directory.
 ComponentManagergetComponentManager()
     Get the ComponentManager handle.
 ComponentQuerygetComponentQuery()
     Get the ComponentQuery handle.
 ComponentQuerygetComponentQuery(String targetName)
     Get the ComponentQuery for a specified target.
 com.sun.jbi.messaging.ConnectionManagergetConnectionManager()
     Get the ConnectionManager handle.
 java.util.PropertiesgetInitialProperties()
     Gets the initial properties specified in the domain.xml file.
 StringgetJbiInstallRoot()
     Get the JBI install root directory path.
 StringgetJbiInstanceRoot()
     Get the JBI instance root directory path.
 com.sun.jbi.management.MBeanHelpergetMBeanHelper()
     Get a handle to the MBeanHelper implementation.
 com.sun.jbi.management.MBeanNamesgetMBeanNames()
     Get a handle to the MBeanNames service for use in creating MBean names.
 javax.management.MBeanServergetMBeanServer()
     Get the JMX MBean server used to register all MBeans in the JBI framework.
 ObjectgetManagementClass(String aServiceName)
     Get a handle to the class implementing management for the named JBI system service.
Parameters:
  aServiceName - - the name of the JBI system service.
 com.sun.jbi.management.ManagementMessageFactorygetManagementMessageFactory()
     Get the management message factory which enables JBI components to construct status and exception messages.
 javax.naming.InitialContextgetNamingContext()
     Get the JNDI naming context for this implementation.
 com.sun.jbi.framework.EventNotifierCommongetNotifier()
     Get the Event Notifier for emitting event notifications.
 com.sun.jbi.platform.PlatformContextgetPlatformContext()
     Get the platform-specific context for this implementation.
 JBIProvidergetProvider()
     Gets the provider typeof JBI.
 org.w3c.dom.DocumentgetReadOnlyRegistry()
     Get a read-only reference to the persisted JBI Registry.
 com.sun.jbi.registry.RegistrygetRegistry()
     Get a reference to the persisted JBI registry.
 ServiceUnitRegistrationgetServiceUnitRegistration()
     Get the ServiceUnitRegistration handle.
 StringTranslatorgetStringTranslator(String packageName)
     Get a StringTranslator for a specific package name.
Parameters:
  packageName - - the name of the package for which a StringTranslatoris being requested.
 StringTranslatorgetStringTranslatorFor(Object object)
     Get a StringTranslator for a specific object.
Parameters:
  object - - the object for which a StringTranslator is beingrequested, using the name of the package containing the object.
 javax.transaction.TransactionManagergetTransactionManager()
     Get the TransactionManager for this implementation.
 com.sun.jbi.VersionInfogetVersionInfo()
     Get a handle to the VersionInfo implementation.
 com.sun.jbi.wsdl2.WsdlFactorygetWsdlFactory()
     Get a copy of the WSDL factory.
public  booleanisFrameworkReady(boolean start)
     Indicates whether or not the JBI framework has been fully started.
public  booleanisStartOnDeployEnabled()
     This method is used to find out if start-on-deploy is enabled. When this is enabled components are started automatically when there is deployment for them.
public  booleanisStartOnVerifyEnabled()
     This method is used to find out if start-on-verify is enabled. When this is enabled components are started automatically when an application has to be verified for that component.



Method Detail
getAppServerInstallRoot
String getAppServerInstallRoot()(Code)
Get the AppServer installation root directory. The AppServer install root.



getAppServerInstanceRoot
String getAppServerInstanceRoot()(Code)
Get the AppServer instance root directory. The AppServer instance root.



getComponentManager
ComponentManager getComponentManager()(Code)
Get the ComponentManager handle. The ComponentManager instance.



getComponentQuery
ComponentQuery getComponentQuery()(Code)
Get the ComponentQuery handle. The ComponentQuery instance.



getComponentQuery
ComponentQuery getComponentQuery(String targetName)(Code)
Get the ComponentQuery for a specified target.
Parameters:
  targetName - - either "domain" or a valid server / cluster name The ComponentQuery instance.



getConnectionManager
com.sun.jbi.messaging.ConnectionManager getConnectionManager()(Code)
Get the ConnectionManager handle. The ConnectionManager instance.



getInitialProperties
java.util.Properties getInitialProperties()(Code)
Gets the initial properties specified in the domain.xml file. The initial properties from the AppServer.



getJbiInstallRoot
String getJbiInstallRoot()(Code)
Get the JBI install root directory path. The JBI install root directory path.



getJbiInstanceRoot
String getJbiInstanceRoot()(Code)
Get the JBI instance root directory path. The JBI instance root directory path.



getMBeanHelper
com.sun.jbi.management.MBeanHelper getMBeanHelper()(Code)
Get a handle to the MBeanHelper implementation. The MBeanHelper instance.



getMBeanNames
com.sun.jbi.management.MBeanNames getMBeanNames()(Code)
Get a handle to the MBeanNames service for use in creating MBean names. Handle to the MBeanNames service.



getMBeanServer
javax.management.MBeanServer getMBeanServer()(Code)
Get the JMX MBean server used to register all MBeans in the JBI framework. The MBean server handle.



getManagementClass
Object getManagementClass(String aServiceName)(Code)
Get a handle to the class implementing management for the named JBI system service.
Parameters:
  aServiceName - - the name of the JBI system service. The instance implementing management for the service.



getManagementMessageFactory
com.sun.jbi.management.ManagementMessageFactory getManagementMessageFactory()(Code)
Get the management message factory which enables JBI components to construct status and exception messages. An instance of ManagementMessageFactory.



getNamingContext
javax.naming.InitialContext getNamingContext()(Code)
Get the JNDI naming context for this implementation. This context is a standard JNDI InitialContext but its content will vary based on the environment in which the JBI implementation is running. The JNDI naming context.



getNotifier
com.sun.jbi.framework.EventNotifierCommon getNotifier()(Code)
Get the Event Notifier for emitting event notifications. The EventNotifier instance.



getPlatformContext
com.sun.jbi.platform.PlatformContext getPlatformContext()(Code)
Get the platform-specific context for this implementation. The PlatformContext.



getProvider
JBIProvider getProvider()(Code)
Gets the provider typeof JBI. The JBI provider.



getReadOnlyRegistry
org.w3c.dom.Document getReadOnlyRegistry()(Code)
Get a read-only reference to the persisted JBI Registry. A DOM registry document object is returned. the registry document



getRegistry
com.sun.jbi.registry.Registry getRegistry()(Code)
Get a reference to the persisted JBI registry. Registry instance



getServiceUnitRegistration
ServiceUnitRegistration getServiceUnitRegistration()(Code)
Get the ServiceUnitRegistration handle. The ServiceUnitRegistration instance.



getStringTranslator
StringTranslator getStringTranslator(String packageName)(Code)
Get a StringTranslator for a specific package name.
Parameters:
  packageName - - the name of the package for which a StringTranslatoris being requested. The StringTranslator for the named package.



getStringTranslatorFor
StringTranslator getStringTranslatorFor(Object object)(Code)
Get a StringTranslator for a specific object.
Parameters:
  object - - the object for which a StringTranslator is beingrequested, using the name of the package containing the object. The StringTranslator for the object's package.



getTransactionManager
javax.transaction.TransactionManager getTransactionManager()(Code)
Get the TransactionManager for this implementation. The instance returned is an implementation of the standard JTS interface. If none is available, returns null. A TransactionManager instance.



getVersionInfo
com.sun.jbi.VersionInfo getVersionInfo()(Code)
Get a handle to the VersionInfo implementation. The VersionInfo instance.



getWsdlFactory
com.sun.jbi.wsdl2.WsdlFactory getWsdlFactory() throws com.sun.jbi.wsdl2.WsdlException(Code)
Get a copy of the WSDL factory. This needs to be done before any reading, writing, or manipulation of WSDL documents can be performed using the WSDL API. An instance of the WSDL factory.
exception:
  WsdlException - If the factory cannot be instantiated.



isFrameworkReady
public boolean isFrameworkReady(boolean start)(Code)
Indicates whether or not the JBI framework has been fully started. This method provides clients with a way of determining if the JBI framework started up in passive mode as a result of on-demand initialization. The 'start' parameter instructs the framework to start completely if it has not already done so. If the framework has already been started, the request to start again is ignored.
Parameters:
  start - requests that the framework start completely beforereturning. true if the framework is completely started, false otherwise.



isStartOnDeployEnabled
public boolean isStartOnDeployEnabled()(Code)
This method is used to find out if start-on-deploy is enabled. When this is enabled components are started automatically when there is deployment for them. This is controlled by the property com.sun.jbi.startOnDeploy. By default start-on-deploy is enabled. It is disabled only if com.sun.jbi.startOnDeploy=false.



isStartOnVerifyEnabled
public boolean isStartOnVerifyEnabled()(Code)
This method is used to find out if start-on-verify is enabled. When this is enabled components are started automatically when an application has to be verified for that component. This is controlled by the property com.sun.jbi.startOnVerify. By default start-on-verify is enabled. It is disabled only if com.sun.jbi.startOnVerify=false.



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