using System;
using System.Collections.Generic;
using OpenMetaverse;
namespace OpenSim.Region.Framework.Interfaces
{
///
/// This maintains the relationship between a UUID and a user name.
///
public interface IUserManagement
{
string GetUserName(UUID uuid);
string GetUserHomeURL(UUID uuid);
string GetUserUUI(UUID uuid);
string GetUserServerURL(UUID uuid, string serverType);
///
/// Add a user.
///
///
/// If an account is found for the UUID, then the names in this will be used rather than any information
/// extracted from creatorData.
///
///
/// The creator data for this user.
void AddUser(UUID uuid, string creatorData);
///
/// Add a user.
///
///
/// The UUID is related to the name without any other checks being performed, such as user account presence.
///
///
///
///
void AddUser(UUID uuid, string firstName, string lastName);
///
/// Add a user.
///
///
/// The arguments apart from uuid are formed into a creatorData string and processing proceeds as for the
/// AddUser(UUID uuid, string creatorData) method.
///
///
///
///
void AddUser(UUID uuid, string firstName, string lastName, string profileURL);
}
}