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


Java LdapTestUtils.clearSubContexts方法代码示例

本文整理汇总了Java中org.springframework.ldap.test.LdapTestUtils.clearSubContexts方法的典型用法代码示例。如果您正苦于以下问题:Java LdapTestUtils.clearSubContexts方法的具体用法?Java LdapTestUtils.clearSubContexts怎么用?Java LdapTestUtils.clearSubContexts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.ldap.test.LdapTestUtils的用法示例。


在下文中一共展示了LdapTestUtils.clearSubContexts方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadData

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
protected static void loadData() throws Exception
{
    // Bind to the directory
    LdapContextSource contextSource = new LdapContextSource();
    contextSource.setUrl("ldap://127.0.0.1:10389");
    contextSource.setUserDn("uid=admin,ou=system");
    contextSource.setPassword("secret");
    contextSource.setPooled(false);
    //contextSource.setDirObjectFactory(null);
    contextSource.afterPropertiesSet();

    // Create the Sprint LDAP template
    LdapTemplate template = new LdapTemplate(contextSource);

    // Clear out any old data - and load the test data
    LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("dc=example,dc=com"));
    LdapTestUtils.loadLdif(contextSource, new ClassPathResource("data.ldif"));
}
 
开发者ID:geoserver,项目名称:geofence,代码行数:19,代码来源:BaseDAOTest.java

示例2: tearDown

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void tearDown() throws Exception {
    LdapTestUtils.clearSubContexts(contextSource, baseName);

    odmManager=null;
    contextSource=null;
    converterManager=null;
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:9,代码来源:TestLdap.java

示例3: cleanup

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws NamingException {
    LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:5,代码来源:PagedSearchITest.java

示例4: cleanup

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws Exception {
    LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:5,代码来源:DigestMd5AuthenticationITest.java

示例5: cleanup

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws Exception {
       LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
	attributesMapper = null;
	contextMapper = null;
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:7,代码来源:LdapTemplateSearchResultITest.java


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