Module java.management

Class MLetContent

java.lang.Object
javax.management.loading.MLetContent

@Deprecated(since="20", forRemoval=true) public class MLetContent extends Object
Deprecated, for removal: This API element is subject to removal in a future version.
This API is part of Management Applets (m-lets), which is a legacy feature that allows loading of remote MBeans. This feature is not usable without a Security Manager, which is deprecated and subject to removal in a future release. Consequently, this API is also deprecated and subject to removal. There is no replacement.
这个类表示MLET标签的内容。它可以被MLet的子类所使用,该子类覆盖了MLet.check方法。
自版本:
1.6
  • Constructor Summary

    Constructors
    Constructor
    Description
    MLetContent(URL url, Map<String,String> attributes, List<String> types, List<String> values)
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    创建一个MLet实例,该实例使用从MLet文本文件中的MLET标签中读取的属性进行初始化。
  • Method Summary

    Modifier and Type
    Method
    Description
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签的属性。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签的CODE属性的值。
    URL
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取代码库URL。
    URL
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLet文本文件的基本URL。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取由MLET标签的ARCHIVE属性指定的.jar文件列表。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签的NAME属性的值。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签内每个嵌套的<PARAM>标签中TYPE属性的值列表。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签内每个嵌套的<PARAM>标签中VALUE属性的值列表。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签的OBJECT属性的值。
    已弃用,将来会被移除:此API元素可能会在将来的版本中被移除。
    获取MLET标签的VERSION属性的值。

    Methods declared in class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • MLetContent

      public MLetContent(URL url, Map<String,String> attributes, List<String> types, List<String> values)
      Deprecated, for removal: This API element is subject to removal in a future version.
      创建一个MLet实例,该实例使用从MLet文本文件中的MLET标签中读取的属性进行初始化。
      参数:
      url - 包含MLET标签的MLet文本文件的URL。
      attributes - MLET标签的属性映射。此映射中的键是小写的属性名称,例如codebase。值是相关联的属性值。
      types - 出现在嵌套的<PARAM>标签中的TYPE属性列表。
      values - 出现在嵌套的<PARAM>标签中的VALUE属性列表。
  • Method Details

    • getAttributes

      public Map<String,String> getAttributes()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签的属性。返回的映射中的键是小写的属性名称,例如codebase。值是相关联的属性值。
      返回:
      MLET标签的属性及其值的映射。
    • getDocumentBase

      public URL getDocumentBase()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLet文本文件的基本URL。
      返回:
      MLet文本文件的基本URL。
    • getCodeBase

      public URL getCodeBase()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取代码库URL。
      返回:
      代码库URL。
    • getJarFiles

      public String getJarFiles()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取由MLET标签的ARCHIVE属性指定的.jar文件列表。
      返回:
      逗号分隔的.jar文件名列表。
    • getCode

      public String getCode()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签的CODE属性的值。
      返回:
      MLET标签的CODE属性的值。
    • getSerializedObject

      public String getSerializedObject()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签的OBJECT属性的值。
      返回:
      MLET标签的OBJECT属性的值。
    • getName

      public String getName()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签的NAME属性的值。
      返回:
      MLET标签的NAME属性的值。
    • getVersion

      public String getVersion()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签的VERSION属性的值。
      返回:
      MLET标签的VERSION属性的值。
    • getParameterTypes

      public List<String> getParameterTypes()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签内每个嵌套的<PARAM>标签中TYPE属性的值列表。
      返回:
      类型列表。
    • getParameterValues

      public List<String> getParameterValues()
      Deprecated, for removal: This API element is subject to removal in a future version.
      获取MLET标签内每个嵌套的<PARAM>标签中VALUE属性的值列表。
      返回:
      值列表。