本文整理汇总了Java中org.apache.directory.api.ldap.model.exception.LdapOperationErrorException类的典型用法代码示例。如果您正苦于以下问题:Java LdapOperationErrorException类的具体用法?Java LdapOperationErrorException怎么用?Java LdapOperationErrorException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LdapOperationErrorException类属于org.apache.directory.api.ldap.model.exception包,在下文中一共展示了LdapOperationErrorException类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildReferralException
import org.apache.directory.api.ldap.model.exception.LdapOperationErrorException; //导入依赖的package包/类
private LdapReferralException buildReferralException( Entry parentEntry, Dn childDn ) throws LdapException
{
// Get the Ref attributeType
Attribute refs = parentEntry.get( SchemaConstants.REF_AT );
List<String> urls = new ArrayList<String>();
try
{
// manage each Referral, building the correct URL for each of them
for ( Value<?> url : refs )
{
// we have to replace the parent by the referral
LdapUrl ldapUrl = new LdapUrl( url.getString() );
// We have a problem with the Dn : we can't use the UpName,
// as we may have some spaces around the ',' and '+'.
// So we have to take the Rdn one by one, and create a
// new Dn with the type and value UP form
Dn urlDn = ldapUrl.getDn().add( childDn );
ldapUrl.setDn( urlDn );
urls.add( ldapUrl.toString() );
}
}
catch ( LdapURLEncodingException luee )
{
throw new LdapOperationErrorException( luee.getMessage(), luee );
}
// Return with an exception
LdapReferralException lre = new LdapReferralException( urls );
lre.setRemainingDn( childDn );
lre.setResolvedDn( parentEntry.getDn() );
lre.setResolvedObject( parentEntry );
return lre;
}