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


javax.jbi.management.AdminServiceMBean

AdminServiceMBean
public interface AdminServiceMBean (Code)
This interface defines a set of administrative methods allowing a JMX-based administrative tool to perform a variety of administrative tasks.
  • Find component lifecycle MBean names for:
    • Individual components, by name
    • All binding components
    • All service engines
  • Find lifecyle MBeans names for implementation-defined services:
    • Individual implementation services, by name
    • All implementation services
  • Query whether an individual component is a binding or engine
  • Query implementation information (version etc.)

author:
   JSR208 Expert Group




Method Summary
 ObjectName[]getBindingComponents()
     Get a list of ComponentLifeCycleMBean s for all binding components currently installed in the JBI system.
 ObjectNamegetComponentByName(String name)
     Find the ComponentLifeCycleMBean of a JBI Installable Component by its unique name.
 ObjectName[]getEngineComponents()
     Get a list of ComponentLifeCycleMBean s for all service engines currently installed in the JBI system.
 StringgetSystemInfo()
     Return current version and other info about this JBI implementation.
 ObjectNamegetSystemService(String serviceName)
     Lookup a system service LifeCycleMBean by name.
 ObjectName[]getSystemServices()
     Looks up all JBI system services LifeCycleMBean 's currently installed.
 booleanisBinding(String componentName)
     Check if a given JBI component is a Binding Component.
 booleanisEngine(String componentName)
     Check if a given JBI component is a Service Engine.



Method Detail
getBindingComponents
ObjectName[] getBindingComponents()(Code)
Get a list of ComponentLifeCycleMBean s for all binding components currently installed in the JBI system. array of JMX object names of component life cycle MBeans for all installed binding components; must be non-null; may be empty



getComponentByName
ObjectName getComponentByName(String name)(Code)
Find the ComponentLifeCycleMBean of a JBI Installable Component by its unique name.
Parameters:
  name - the name of the engine or binding component; must be non-null and non-empty the JMX object name of the component's life cycle MBean, or null if there is no such component with the given name



getEngineComponents
ObjectName[] getEngineComponents()(Code)
Get a list of ComponentLifeCycleMBean s for all service engines currently installed in the JBI system. array of JMX object names of component life cycle MBeans for all installed service engines; must be non-null; may be empty



getSystemInfo
String getSystemInfo()(Code)
Return current version and other info about this JBI implementation. The contents of the returned string are implementation dependent. information string about the JBI implementation, including version information; must be non-null and non-empty



getSystemService
ObjectName getSystemService(String serviceName)(Code)
Lookup a system service LifeCycleMBean by name. System services are implementation-defined services which can administered through JMX, and have a life cycle.

System services are not related to service engines.
Parameters:
  serviceName - name of the system service; must be non-null and non-empty; values are implementation-dependent JMX object name of the system service's LifeCycleMBean, or null if there is no system service with the givenname.




getSystemServices
ObjectName[] getSystemServices()(Code)
Looks up all JBI system services LifeCycleMBean 's currently installed. System services are implementation-defined services which can administered through JMX. System services are not related to service engines. array of LifecycleMBean JMX object names of system services currently installed in the JBI implementation; must be non-null;may be empty



isBinding
boolean isBinding(String componentName)(Code)
Check if a given JBI component is a Binding Component.
Parameters:
  componentName - the unique name of the component; must be non-nulland non-empty true if the component is a binding component; false if the component is a service engine or ifthere is no component with the given componentNameinstalled in the JBI system



isEngine
boolean isEngine(String componentName)(Code)
Check if a given JBI component is a Service Engine.
Parameters:
  componentName - the unique name of the component; must be non-nulland non-empty true if the component is a service engine;false if the component is a binding component, or ifthere is no component with the given componentNameinstalled in the JBI system



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