本文整理了Java中org.apache.directory.server.core.api.partition.Partition.unbind()
方法的一些代码示例,展示了Partition.unbind()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Partition.unbind()
方法的具体详情如下:
包路径:org.apache.directory.server.core.api.partition.Partition
类名称:Partition
方法名:unbind
[英]Represents an unbind operation issued by an authenticated client. Partitions need not support this operation. This operation is here to enable those interested in implementing virtual directories with ApacheDS.
[中]表示由经过身份验证的客户端发出的解除绑定操作。分区不需要支持此操作。此操作旨在帮助那些对使用ApacheDS实现虚拟目录感兴趣的人。
代码示例来源:origin: org.apache.directory.server/apacheds-core-api
/**
* {@inheritDoc}
*/
public void unbind( UnbindOperationContext unbindContext ) throws LdapException
{
wrapped.unbind( unbindContext );
}
代码示例来源:origin: org.apache.directory.server/apacheds-core-shared
/**
* {@inheritDoc}
*/
@Override
public void unbind( UnbindOperationContext unbindContext ) throws LdapException
{
Dn unbindContextDn = unbindContext.getDn();
if ( !Dn.isNullOrEmpty( unbindContextDn ) )
{
Partition partition = getPartition( unbindContext.getDn() );
partition.unbind( unbindContext );
}
}
内容来源于网络,如有侵权,请联系作者删除!