package.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <!-- package.html - describes classes in java.lang.management package.
  3. Copyright (C) 2006 Free Software Foundation, Inc.
  4. This file is part of GNU Classpath.
  5. GNU Classpath is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. GNU Classpath is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GNU Classpath; see the file COPYING. If not, write to the
  15. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. 02110-1301 USA.
  17. Linking this library statically or dynamically with other modules is
  18. making a combined work based on this library. Thus, the terms and
  19. conditions of the GNU General Public License cover the whole
  20. combination.
  21. As a special exception, the copyright holders of this library give you
  22. permission to link this library with independent modules to produce an
  23. executable, regardless of the license terms of these independent
  24. modules, and to copy and distribute the resulting executable under
  25. terms of your choice, provided that you also meet, for each linked
  26. independent module, the terms and conditions of the license of that
  27. module. An independent module is a module which is not derived from
  28. or based on this library. If you modify this library, you may extend
  29. this exception to your version of the library, but you are not
  30. obligated to do so. If you do not wish to do so, delete this
  31. exception statement from your version. -->
  32. <html>
  33. <head><title>GNU Classpath - javax.management.openmbean</title></head>
  34. <body>
  35. <p>
  36. Provides the data types and descriptor classes for the
  37. <emph>Open MBean</emph>s. Open MBeans are provided in
  38. order to aid interoperability with non-Java management
  39. systems. Unlike normal MBeans, which make use of any
  40. Java data type, Open MBeans use a restricted set of types
  41. which can then be mapped over remote connections, including
  42. to non-Java systems.
  43. </p>
  44. <p>
  45. Normal MBeans are described using an instance of
  46. {@link javax.management.MBeanInfo} with appropriate representations
  47. of the attributes, constructors and operators associated with
  48. the bean. Open MBeans are described in the same way, but by
  49. using subtypes of these entities, which type the bean data using
  50. instances of {@link javax.management.openmbean.OpenType}. Open
  51. types differ from Java types, and are explicitly specified in order
  52. to obtain interoperability with other systems.
  53. </p>
  54. </body>
  55. </html>