当前位置: 首页>>代码示例>>Java>>正文


Java LDAPException.UNAVAILABLE属性代码示例

本文整理汇总了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,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:RootObject.java

示例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,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:RootObject.java

示例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,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:RootObject.java

示例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,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:8,代码来源:RootObject.java

示例5: extendedOperation

@Override
public void extendedOperation(ExetendedOperationInterceptorChain chain,
		ExtendedOperation op, LDAPConstraints constraints)
		throws LDAPException {
	throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:MultiNameSpaceInsert.java

示例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");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:MultiNameSpaceInsert.java

示例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");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:7,代码来源:MultiNameSpaceInsert.java

示例8: add

@Override
public void add(AddInterceptorChain chain, Entry entry,
		LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:RootObject.java

示例9: bind

@Override
public void bind(BindInterceptorChain chain, DistinguishedName dn,
		Password pwd, LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:RootObject.java

示例10: compare

@Override
public void compare(CompareInterceptorChain chain, DistinguishedName dn,
		Attribute attrib, LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:RootObject.java

示例11: delete

@Override
public void delete(DeleteInterceptorChain chain, DistinguishedName dn,
		LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Operation Not Supported",LDAPException.UNAVAILABLE,"");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:RootObject.java

示例12: add

@Override
public void add(AddInterceptorChain chain, Entry entry,
		LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:MultiNameSpaceInsert.java

示例13: delete

@Override
public void delete(DeleteInterceptorChain chain, DistinguishedName dn,
		LDAPConstraints constraints) throws LDAPException {
	throw new LDAPException("Not provided",LDAPException.UNAVAILABLE,"Not provided");

}
 
开发者ID:TremoloSecurity,项目名称:MyVirtualDirectory,代码行数:6,代码来源:MultiNameSpaceInsert.java


注:本文中的com.novell.ldap.LDAPException.UNAVAILABLE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。