本文整理汇总了Java中com.novell.ldap.LDAPException.UNAVAILABLE属性的典型用法代码示例。如果您正苦于以下问题:Java LDAPException.UNAVAILABLE属性的具体用法?Java LDAPException.UNAVAILABLE怎么用?Java LDAPException.UNAVAILABLE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.novell.ldap.LDAPException
的用法示例。
在下文中一共展示了LDAPException.UNAVAILABLE属性的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: extendedOperation
@Override
public void extendedOperation(ExetendedOperationInterceptorChain chain,
ExtendedOperation op, LDAPConstraints constraints)
throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例2: modify
@Override
public void modify(ModifyInterceptorChain chain, DistinguishedName dn,
ArrayList<LDAPModification> mods, LDAPConstraints constraints)
throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例3: rename
@Override
public void rename(RenameInterceptorChain chain, DistinguishedName dn,
DistinguishedName newRdn, Bool deleteOldRdn,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例4: rename
@Override
public void rename(RenameInterceptorChain chain, DistinguishedName dn,
DistinguishedName newRdn, DistinguishedName newParentDN,
Bool deleteOldRdn, LDAPConstraints constraints)
throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例5: extendedOperation
@Override
public void extendedOperation(ExetendedOperationInterceptorChain chain,
ExtendedOperation op, LDAPConstraints constraints)
throws LDAPException {
throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");
}
示例6: modify
@Override
public void modify(ModifyInterceptorChain chain, DistinguishedName dn,
ArrayList<LDAPModification> mods, LDAPConstraints constraints)
throws LDAPException {
throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");
}
示例7: rename
@Override
public void rename(RenameInterceptorChain chain, DistinguishedName dn,
DistinguishedName newRdn, Bool deleteOldRdn,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");
}
示例8: add
@Override
public void add(AddInterceptorChain chain, Entry entry,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例9: bind
@Override
public void bind(BindInterceptorChain chain, DistinguishedName dn,
Password pwd, LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例10: compare
@Override
public void compare(CompareInterceptorChain chain, DistinguishedName dn,
Attribute attrib, LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例11: delete
@Override
public void delete(DeleteInterceptorChain chain, DistinguishedName dn,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");
}
示例12: add
@Override
public void add(AddInterceptorChain chain, Entry entry,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");
}
示例13: delete
@Override
public void delete(DeleteInterceptorChain chain, DistinguishedName dn,
LDAPConstraints constraints) throws LDAPException {
throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");
}