Skip to content

标识解析

标识解析

  • 方法功能:提供标识解析查询服务,用户可通过标识查询接口查询标识详细信息
  • 方法描述
java
/**
 * Resolves a handle and returns a set of handle values
 *
 * @param handle The value of the handle to resolve
 * @exception IDException Describes the error in resolution
 */
HandleValue[] resolveHandle(String handle) throws IDException
/**
 * Resolves a handle and returns a set of handle values
 *
 * @param handle The value of the handle to resolve
 * @exception IDException Describes the error in resolution
 */
HandleValue[] resolveHandle(String handle) throws IDException
java
/**
 * Resolves a handle and returns a set of handle values that satisfy the
 * type filter specified. If the resolution is to retrieve all handle
 * values, specify null for both filter and indexes. If the administrative
 * priveleges are applicable, the restricted values will also be returned.
 * Also, the resolution request is not authoritative.
 *
 * @param handle The value of the handle to resolve
 * @param types The types of the handle values that we are looking for.
 * @exception IDException Describes the error in resolution
 */
HandleValue[] resolveHandle(String handle, String[] types, int[] indexes) throws IDException;
/**
 * Resolves a handle and returns a set of handle values that satisfy the
 * type filter specified. If the resolution is to retrieve all handle
 * values, specify null for both filter and indexes. If the administrative
 * priveleges are applicable, the restricted values will also be returned.
 * Also, the resolution request is not authoritative.
 *
 * @param handle The value of the handle to resolve
 * @param types The types of the handle values that we are looking for.
 * @exception IDException Describes the error in resolution
 */
HandleValue[] resolveHandle(String handle, String[] types, int[] indexes) throws IDException;
  • 方法参数
参数类型参数描述示例
handleString标识名称88.888.3/20220121
typesString[]标识属性类型new String[]
indexesint[]标识属性索引new int[]{}

Released under the MIT License.