aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorlbsa712007-10-05 09:41:41 +0000
committerlbsa712007-10-05 09:41:41 +0000
commit10c36a2573caefaf653f18b0b60403a9a597a348 (patch)
treeef519c2c5bf687c532b2b7f3a5e6387fb10f477d /OpenSim/Framework
parent* ignored config files (diff)
downloadopensim-SC_OLD-10c36a2573caefaf653f18b0b60403a9a597a348.zip
opensim-SC_OLD-10c36a2573caefaf653f18b0b60403a9a597a348.tar.gz
opensim-SC_OLD-10c36a2573caefaf653f18b0b60403a9a597a348.tar.bz2
opensim-SC_OLD-10c36a2573caefaf653f18b0b60403a9a597a348.tar.xz
* Renamed IUserServices to IUserService
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs4
-rw-r--r--OpenSim/Framework/Communications/IUserService.cs (renamed from OpenSim/Framework/Communications/IUserServices.cs)2
-rw-r--r--OpenSim/Framework/Communications/UserManagerBase.cs2
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index cd5d901..e266b90 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -40,8 +40,8 @@ namespace OpenSim.Framework.Communications
40{ 40{
41 public class CommunicationsManager 41 public class CommunicationsManager
42 { 42 {
43 protected IUserServices m_userService; 43 protected IUserService m_userService;
44 public IUserServices UserService 44 public IUserService UserService
45 { 45 {
46 get { return m_userService; } 46 get { return m_userService; }
47 } 47 }
diff --git a/OpenSim/Framework/Communications/IUserServices.cs b/OpenSim/Framework/Communications/IUserService.cs
index 13dd378..55c006f 100644
--- a/OpenSim/Framework/Communications/IUserServices.cs
+++ b/OpenSim/Framework/Communications/IUserService.cs
@@ -30,7 +30,7 @@ using OpenSim.Framework.Data;
30 30
31namespace OpenSim.Framework.Communications 31namespace OpenSim.Framework.Communications
32{ 32{
33 public interface IUserServices 33 public interface IUserService
34 { 34 {
35 UserProfileData GetUserProfile(string firstName, string lastName); 35 UserProfileData GetUserProfile(string firstName, string lastName);
36 UserProfileData GetUserProfile(string name); 36 UserProfileData GetUserProfile(string name);
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs
index d1bbde1..4dad82e 100644
--- a/OpenSim/Framework/Communications/UserManagerBase.cs
+++ b/OpenSim/Framework/Communications/UserManagerBase.cs
@@ -41,7 +41,7 @@ using OpenSim.Framework.Utilities;
41 41
42namespace OpenSim.Framework.UserManagement 42namespace OpenSim.Framework.UserManagement
43{ 43{
44 public abstract class UserManagerBase : IUserServices 44 public abstract class UserManagerBase : IUserService
45 { 45 {
46 public UserConfig _config; 46 public UserConfig _config;
47 Dictionary<string, IUserData> _plugins = new Dictionary<string, IUserData>(); 47 Dictionary<string, IUserData> _plugins = new Dictionary<string, IUserData>();