Package org.sonatype.security.mock.usermanagement

Source Code of org.sonatype.security.mock.usermanagement.AbstractMockUserManager

/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2007-2014 Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
package org.sonatype.security.mock.usermanagement;

import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

import org.sonatype.security.usermanagement.AbstractUserManager;
import org.sonatype.security.usermanagement.User;
import org.sonatype.security.usermanagement.UserNotFoundException;
import org.sonatype.security.usermanagement.UserSearchCriteria;

public abstract class AbstractMockUserManager
    extends AbstractUserManager
{

  private Set<User> users = new HashSet<User>();

  public boolean supportsWrite() {
    return true;
  }

  public User addUser(User user, String password) {
    this.getUsers().add(user);
    return user;
  }

  public User updateUser(User user)
      throws UserNotFoundException
  {
    User existingUser = this.getUser(user.getUserId());

    if (existingUser == null) {
      throw new UserNotFoundException(user.getUserId());
    }

    return user;
  }

  public void deleteUser(String userId)
      throws UserNotFoundException
  {
    User existingUser = this.getUser(userId);

    if (existingUser == null) {
      throw new UserNotFoundException(userId);
    }

    this.getUsers().remove(existingUser);

  }

  public User getUser(String userId) {
    for (User user : this.getUsers()) {
      if (user.getUserId().equals(userId)) {
        return user;
      }
    }
    return null;
  }

  public Set<String> listUserIds() {
    Set<String> userIds = new HashSet<String>();

    for (User user : this.getUsers()) {
      userIds.add(user.getUserId());
    }

    return userIds;
  }

  public Set<User> listUsers() {
    return Collections.unmodifiableSet(this.getUsers());
  }

  public Set<User> searchUsers(UserSearchCriteria criteria) {
    return this.filterListInMemeory(this.getUsers(), criteria);
  }

  protected Set<User> getUsers() {
    return users;
  }

  public void changePassword(String userId, String newPassword)
      throws UserNotFoundException
  {
  }
}
TOP

Related Classes of org.sonatype.security.mock.usermanagement.AbstractMockUserManager

TOP
Copyright © 2018 www.massapi.com. 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.