Java Doc for JmxUtils.java in  » J2EE » spring-framework-2.0.6 » org » springframework » jmx » support » 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 » J2EE » spring framework 2.0.6 » org.springframework.jmx.support 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.jmx.support.JmxUtils

JmxUtils
abstract public class JmxUtils (Code)
Collection of generic utility methods to support Spring JMX. Includes a convenient method to locate an MBeanServer.
author:
   Rob Harrop
author:
   Juergen Hoeller
since:
   1.2
See Also:   JmxUtils.locateMBeanServer


Field Summary
final public static  StringIDENTITY_OBJECT_NAME_KEY
     The key used when extending an existing ObjectName with the identity hash code of its corresponding managed resource.


Method Summary
public static  ObjectNameappendIdentityToObjectName(ObjectName objectName, Object managedResource)
     Append an additional key/value pair to an existing ObjectName with the key being the static value identity and the value being the identity hash code of the managed resource being exposed on the supplied ObjectName .
public static  StringgetAttributeName(PropertyDescriptor property, boolean useStrictCasing)
     Return the JMX attribute name to use for the given JavaBeans property.

When using strict casing, a JavaBean property with a getter method such as getFoo() translates to an attribute called Foo.

public static  ClassgetClassToExpose(Object managedBean)
     Return the class or interface to expose for the given bean.
public static  ClassgetClassToExpose(Class beanClass)
     Return the class or interface to expose for the given bean class.
public static  String[]getMethodSignature(Method method)
     Create a String[] representing the argument signature of a method.
public static  booleanisMBean(Class beanClass)
     Determine whether the given bean class qualifies as an MBean as-is.
public static  MBeanServerlocateMBeanServer()
     Attempt to find a locally running MBeanServer.
public static  MBeanServerlocateMBeanServer(String agentId)
     Attempt to find a locally running MBeanServer.
public static  Class[]parameterInfoToTypes(MBeanParameterInfo[] paramInfo)
     Convert an array of MBeanParameterInfo into an array of Class instances corresponding to the parameters.

Field Detail
IDENTITY_OBJECT_NAME_KEY
final public static String IDENTITY_OBJECT_NAME_KEY(Code)
The key used when extending an existing ObjectName with the identity hash code of its corresponding managed resource.





Method Detail
appendIdentityToObjectName
public static ObjectName appendIdentityToObjectName(ObjectName objectName, Object managedResource) throws MalformedObjectNameException(Code)
Append an additional key/value pair to an existing ObjectName with the key being the static value identity and the value being the identity hash code of the managed resource being exposed on the supplied ObjectName . This can be used to provide a unique ObjectName for each distinct instance of a particular bean or class. Useful when generating ObjectName ObjectNames at runtime for a set of managed resources based on the template value supplied by a org.springframework.jmx.export.naming.ObjectNamingStrategy .
Parameters:
  objectName - the original JMX ObjectName
Parameters:
  managedResource - the MBean instance an ObjectName with the MBean identity added
throws:
  MalformedObjectNameException - in case of an invalid object name specification
See Also:   org.springframework.util.ObjectUtils.getIdentityHexString(Object)



getAttributeName
public static String getAttributeName(PropertyDescriptor property, boolean useStrictCasing)(Code)
Return the JMX attribute name to use for the given JavaBeans property.

When using strict casing, a JavaBean property with a getter method such as getFoo() translates to an attribute called Foo. With strict casing disabled, getFoo() would translate to just foo.
Parameters:
  property - the JavaBeans property descriptor
Parameters:
  useStrictCasing - whether to use strict casing the JMX attribute name to use




getClassToExpose
public static Class getClassToExpose(Object managedBean)(Code)
Return the class or interface to expose for the given bean. This is the class that will be searched for attributes and operations (for example, checked for annotations).

This implementation returns the superclass for a CGLIB proxy and the class of the given bean else (for a JDK proxy or a plain bean class).
Parameters:
  managedBean - the bean instance (might be an AOP proxy) the bean class to expose
See Also:   org.springframework.util.ClassUtils.getUserClass(Object)




getClassToExpose
public static Class getClassToExpose(Class beanClass)(Code)
Return the class or interface to expose for the given bean class. This is the class that will be searched for attributes and operations (for example, checked for annotations).

This implementation returns the superclass for a CGLIB proxy and the class of the given bean else (for a JDK proxy or a plain bean class).
Parameters:
  beanClass - the bean class (might be an AOP proxy class) the bean class to expose
See Also:   org.springframework.util.ClassUtils.getUserClass(Class)




getMethodSignature
public static String[] getMethodSignature(Method method)(Code)
Create a String[] representing the argument signature of a method. Each element in the array is the fully qualified class name of the corresponding argument in the methods signature.
Parameters:
  method - the method to build an argument signature for the signature as array of argument types



isMBean
public static boolean isMBean(Class beanClass)(Code)
Determine whether the given bean class qualifies as an MBean as-is.

This implementation checks for javax.management.DynamicMBean classes as well as classes with corresponding "*MBean" interface (Standard MBeans).
Parameters:
  beanClass - the bean class to analyze whether the class qualifies as an MBean
See Also:   org.springframework.jmx.export.MBeanExporter.isMBean(Class)




locateMBeanServer
public static MBeanServer locateMBeanServer() throws MBeanServerNotFoundException(Code)
Attempt to find a locally running MBeanServer. Fails if no MBeanServer can be found. Logs a warning if more than one MBeanServer found, returning the first one from the list. the MBeanServer if found
throws:
  org.springframework.jmx.MBeanServerNotFoundException - if no MBeanServer could be found
See Also:   javax.management.MBeanServerFactory.findMBeanServer



locateMBeanServer
public static MBeanServer locateMBeanServer(String agentId) throws MBeanServerNotFoundException(Code)
Attempt to find a locally running MBeanServer. Fails if no MBeanServer can be found. Logs a warning if more than one MBeanServer found, returning the first one from the list.
Parameters:
  agentId - the agent identifier of the MBeanServer to retrieve.If this parameter is null, all registered MBeanServers areconsidered. the MBeanServer if found
throws:
  org.springframework.jmx.MBeanServerNotFoundException - if no MBeanServer could be found
See Also:   javax.management.MBeanServerFactory.findMBeanServer(String)



parameterInfoToTypes
public static Class[] parameterInfoToTypes(MBeanParameterInfo[] paramInfo) throws ClassNotFoundException(Code)
Convert an array of MBeanParameterInfo into an array of Class instances corresponding to the parameters.
Parameters:
  paramInfo - the JMX parameter info the parameter types as classes
throws:
  ClassNotFoundException - if a parameter type could not be resolved



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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