* Renamed IUserServices to IUserService
parent
6ac8a42769
commit
10c36a2573
|
@ -40,8 +40,8 @@ namespace OpenSim.Framework.Communications
|
|||
{
|
||||
public class CommunicationsManager
|
||||
{
|
||||
protected IUserServices m_userService;
|
||||
public IUserServices UserService
|
||||
protected IUserService m_userService;
|
||||
public IUserService UserService
|
||||
{
|
||||
get { return m_userService; }
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ using OpenSim.Framework.Data;
|
|||
|
||||
namespace OpenSim.Framework.Communications
|
||||
{
|
||||
public interface IUserServices
|
||||
public interface IUserService
|
||||
{
|
||||
UserProfileData GetUserProfile(string firstName, string lastName);
|
||||
UserProfileData GetUserProfile(string name);
|
|
@ -41,7 +41,7 @@ using OpenSim.Framework.Utilities;
|
|||
|
||||
namespace OpenSim.Framework.UserManagement
|
||||
{
|
||||
public abstract class UserManagerBase : IUserServices
|
||||
public abstract class UserManagerBase : IUserService
|
||||
{
|
||||
public UserConfig _config;
|
||||
Dictionary<string, IUserData> _plugins = new Dictionary<string, IUserData>();
|
||||
|
|
|
@ -7,7 +7,7 @@ using OpenSim.Framework.Data;
|
|||
|
||||
namespace OpenSim.Region.Communications.OGS1
|
||||
{
|
||||
public class OGS1UserServices :IUserServices
|
||||
public class OGS1UserServices :IUserService
|
||||
{
|
||||
CommunicationsOGS1 m_parent;
|
||||
public OGS1UserServices(CommunicationsOGS1 parent)
|
||||
|
|
Loading…
Reference in New Issue