org.apache.directory.ldap.client.api.LdapConnection.loadSchemaRelaxed()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中org.apache.directory.ldap.client.api.LdapConnection.loadSchemaRelaxed()方法的一些代码示例,展示了LdapConnection.loadSchemaRelaxed()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LdapConnection.loadSchemaRelaxed()方法的具体详情如下:
包路径:org.apache.directory.ldap.client.api.LdapConnection
类名称:LdapConnection
方法名:loadSchemaRelaxed

LdapConnection.loadSchemaRelaxed介绍

[英]Loads all the default schemas that are bundled with the API, in a relaxed mode.

Note: This method enables all schemas prior to loading.
The relaxed mode will allow inconsistencies in the schema.
[中]以轻松模式加载与API绑定的所有默认模式。
注意:此方法在加载之前启用所有架构。
松弛模式将允许模式中出现不一致。

代码示例

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

/**
   * {@inheritDoc}
   */
  @Override
  public void loadSchemaRelaxed() throws LdapException
  {
    connection.loadSchemaRelaxed();
  }
}

代码示例来源:origin: org.apache.directory.api/api-ldap-client-api

/**
   * {@inheritDoc}
   */
  @Override
  public void loadSchemaRelaxed() throws LdapException
  {
    connection.loadSchemaRelaxed();
  }
}

代码示例来源:origin: org.apache.directory.api/api-all

/**
   * {@inheritDoc}
   */
  @Override
  public void loadSchemaRelaxed() throws LdapException
  {
    connection.loadSchemaRelaxed();
  }
}

相关文章