Package org.sonatype.security.usermanagement

Examples of org.sonatype.security.usermanagement.UserManager


  @Test
  public void testIdList()
      throws Exception
  {
    UserManager userLocator = lookup(UserManager.class, "Simple");

    Set<String> ids = userLocator.listUserIds();

    Assert.assertTrue(ids.contains("admin-simple"));
    Assert.assertTrue(ids.contains("deployment-simple"));
    Assert.assertTrue(ids.contains("anonymous-simple"));
View Full Code Here


  @Test
  public void testUserList()
      throws Exception
  {
    UserManager userLocator = this.lookup(UserManager.class, "Simple");

    Set<User> users = userLocator.listUsers();
    // your test could be a bit more robust
    Assert.assertEquals(3, users.size());
  }
View Full Code Here

TOP

Related Classes of org.sonatype.security.usermanagement.UserManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.