1. /*
  2. * @(#)MBeanServerDelegateMBean.java 4.18 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 javax.management;
  8. /**
  9. * Defines the management interface of an object of class MBeanServerDelegate.
  10. *
  11. * @since 1.5
  12. */
  13. public interface MBeanServerDelegateMBean {
  14. /**
  15. * Returns the MBean server agent identity.
  16. *
  17. * @return the agent identity.
  18. */
  19. public String getMBeanServerId();
  20. /**
  21. * Returns the full name of the JMX specification implemented
  22. * by this product.
  23. *
  24. * @return the specification name.
  25. */
  26. public String getSpecificationName();
  27. /**
  28. * Returns the version of the JMX specification implemented
  29. * by this product.
  30. *
  31. * @return the specification version.
  32. */
  33. public String getSpecificationVersion();
  34. /**
  35. * Returns the vendor of the JMX specification implemented
  36. * by this product.
  37. *
  38. * @return the specification vendor.
  39. */
  40. public String getSpecificationVendor();
  41. /**
  42. * Returns the JMX implementation name (the name of this product).
  43. *
  44. * @return the implementation name.
  45. */
  46. public String getImplementationName();
  47. /**
  48. * Returns the JMX implementation version (the version of this product).
  49. *
  50. * @return the implementation version.
  51. */
  52. public String getImplementationVersion();
  53. /**
  54. * Returns the JMX implementation vendor (the vendor of this product).
  55. *
  56. * @return the implementation vendor.
  57. */
  58. public String getImplementationVendor();
  59. }