本文整理了Java中org.apache.directory.ldap.client.api.LdapConnection.getRootDse()
方法的一些代码示例,展示了LdapConnection.getRootDse()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LdapConnection.getRootDse()
方法的具体详情如下:
包路径:org.apache.directory.ldap.client.api.LdapConnection
类名称:LdapConnection
方法名:getRootDse
[英]Get back the RooDSE from the connected server. Only the user attributes are returned.
[中]从连接的服务器上取回RooDSE。仅返回用户属性。
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse( String... attributes ) throws LdapException
{
return connection.getRootDse( attributes );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse() throws LdapException
{
return connection.getRootDse();
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse( String... attributes ) throws LdapException
{
return connection.getRootDse( attributes );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse() throws LdapException
{
return connection.getRootDse();
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse() throws LdapException
{
return connection.getRootDse();
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public Entry getRootDse( String... attributes ) throws LdapException
{
return connection.getRootDse( attributes );
}
内容来源于网络,如有侵权,请联系作者删除!