use of org.apache.jackrabbit.oak.spi.security.principal.PrincipalManagerImpl in project jackrabbit-oak by apache.
the class PrincipalConfigurationImplTest method testGetPrincipalManager3.
@Test
public void testGetPrincipalManager3() {
PrincipalManager pm = pc2.getPrincipalManager(root, NamePathMapper.DEFAULT);
assertNotNull(pm);
assertTrue(pm instanceof PrincipalManagerImpl);
}
use of org.apache.jackrabbit.oak.spi.security.principal.PrincipalManagerImpl in project jackrabbit-oak by apache.
the class PrincipalConfigurationImplTest method testGetPrincipalManager2.
@Test
public void testGetPrincipalManager2() {
pc1.setSecurityProvider(getSecurityProvider());
PrincipalManager pm = pc1.getPrincipalManager(root, NamePathMapper.DEFAULT);
assertNotNull(pm);
assertTrue(pm instanceof PrincipalManagerImpl);
}
Aggregations