本文整理了Java中org.apache.directory.ldap.client.api.LdapConnection.extended()
方法的一些代码示例,展示了LdapConnection.extended()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LdapConnection.extended()
方法的具体详情如下:
包路径:org.apache.directory.ldap.client.api.LdapConnection
类名称:LdapConnection
方法名:extended
[英]Sends a extended operation request to the server with the given OID and no value.
[中]向服务器发送具有给定OID且无值的扩展操作请求。
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid ) throws LdapException
{
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.client.ldap/ldap-client-api
/**
* @see #extended(OID, byte[])
*/
public ExtendedResponse extended( String oid ) throws LdapException
{
return extended( oid, null );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid, byte[] value ) throws LdapException
{
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid ) throws LdapException
{
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid, byte[] value ) throws LdapException
{
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( ExtendedRequest extendedRequest ) throws LdapException
{
return connection.extended( extendedRequest );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid ) throws LdapException
{
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid ) throws LdapException
{
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid, byte[] value ) throws LdapException
{
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.client.ldap/ldap-client-api
/**
* @see #extended(OID, byte[])
*/
public ExtendedResponse extended( OID oid ) throws LdapException
{
return extended( oid, null );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid, byte[] value ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid, byte[] value ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( String oid, byte[] value ) throws LdapException
{
if ( StartTlsRequest.EXTENSION_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid ) throws LdapException
{
if ( START_TLS_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid, byte[] value ) throws LdapException
{
if ( START_TLS_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-all
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid, byte[] value ) throws LdapException
{
if ( START_TLS_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
代码示例来源:origin: org.apache.directory.api/api-ldap-client-api
/**
* {@inheritDoc}
*/
@Override
public ExtendedResponse extended( Oid oid, byte[] value ) throws LdapException
{
if ( START_TLS_OID.equals( oid ) )
{
startTlsCalled = true;
}
return connection.extended( oid, value );
}
内容来源于网络,如有侵权,请联系作者删除!