1. /*
  2. * @(#)JmxProperties.java 4.28 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.jmx.defaults;
  8. /**
  9. * This contains the property list defined for this
  10. * JMX implementation.
  11. *
  12. * @version 4.28 12/19/03
  13. * @author Sun Microsystems, Inc
  14. *
  15. * @since 1.5
  16. */
  17. public class JmxProperties {
  18. // private constructor defined to "hide" the default public constructor
  19. private JmxProperties() {
  20. }
  21. // PUBLIC STATIC CONSTANTS
  22. //------------------------
  23. /**
  24. * References the property that specifies the directory where
  25. * the native libraries will be stored before the MLet Service
  26. * loads them into memory.
  27. * <p>
  28. * Property Name: <B>jmx.mlet.library.dir</B>
  29. */
  30. public static final String JMX_INITIAL_BUILDER =
  31. "javax.management.builder.initial";
  32. /**
  33. * References the property that specifies the directory where
  34. * the native libraries will be stored before the MLet Service
  35. * loads them into memory.
  36. * <p>
  37. * Property Name: <B>jmx.mlet.library.dir</B>
  38. */
  39. public static final String MLET_LIB_DIR = "jmx.mlet.library.dir";
  40. /**
  41. * References the property that specifies the full name of the JMX
  42. * specification implemented by this product.
  43. * <p>
  44. * Property Name: <B>jmx.specification.name</B>
  45. */
  46. public static final String JMX_SPEC_NAME = "jmx.specification.name";
  47. /**
  48. * References the property that specifies the version of the JMX
  49. * specification implemented by this product.
  50. * <p>
  51. * Property Name: <B>jmx.specification.version</B>
  52. */
  53. public static final String JMX_SPEC_VERSION = "jmx.specification.version";
  54. /**
  55. * References the property that specifies the vendor of the JMX
  56. * specification implemented by this product.
  57. * <p>
  58. * Property Name: <B>jmx.specification.vendor</B>
  59. */
  60. public static final String JMX_SPEC_VENDOR = "jmx.specification.vendor";
  61. /**
  62. * References the property that specifies the full name of this product
  63. * implementing the JMX specification.
  64. * <p>
  65. * Property Name: <B>jmx.implementation.name</B>
  66. */
  67. public static final String JMX_IMPL_NAME = "jmx.implementation.name";
  68. /**
  69. * References the property that specifies the name of the vendor of this
  70. * product implementing the JMX specification.
  71. * <p>
  72. * Property Name: <B>jmx.implementation.vendor</B>
  73. */
  74. public static final String JMX_IMPL_VENDOR = "jmx.implementation.vendor";
  75. /**
  76. * References the property that specifies the version of this product
  77. * implementing the JMX specification.
  78. * <p>
  79. * Property Name: <B>jmx.implementation.version</B>
  80. */
  81. public static final String JMX_IMPL_VERSION = "jmx.implementation.version";
  82. }