diff options
author | Justin Clarke Casey | 2008-11-28 15:34:30 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-28 15:34:30 +0000 |
commit | 0862627b341641ec0223bb4191dfee8d85724c9e (patch) | |
tree | ef1815b067c345aa92a81375f12137a3e47876f3 /OpenSim/Grid/UserServer/UserLoginService.cs | |
parent | * Changed name of auth function to better reflect actual use (diff) | |
download | opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.zip opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.gz opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.bz2 opensim-SC_OLD-0862627b341641ec0223bb4191dfee8d85724c9e.tar.xz |
* refactor: move CreateUser into UserServiceAdmin
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 82d5af5..2308910 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -44,6 +44,9 @@ namespace OpenSim.Grid.UserServer | |||
44 | ulong regionhandle, float positionX, float positionY, float positionZ, | 44 | ulong regionhandle, float positionX, float positionY, float positionZ, |
45 | string firstname, string lastname); | 45 | string firstname, string lastname); |
46 | 46 | ||
47 | /// <summary> | ||
48 | /// Login service used in grid mode. | ||
49 | /// </summary> | ||
47 | public class UserLoginService : LoginService | 50 | public class UserLoginService : LoginService |
48 | { | 51 | { |
49 | protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 52 | protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
@@ -65,17 +68,16 @@ namespace OpenSim.Grid.UserServer | |||
65 | m_config = config; | 68 | m_config = config; |
66 | m_inventoryService = inventoryService; | 69 | m_inventoryService = inventoryService; |
67 | } | 70 | } |
71 | |||
68 | public void setloginlevel(int level) | 72 | public void setloginlevel(int level) |
69 | { | 73 | { |
70 | m_minLoginLevel = level; | 74 | m_minLoginLevel = level; |
71 | m_log.InfoFormat("[GRID] Login Level set to {0} ", level); | 75 | m_log.InfoFormat("[GRID] Login Level set to {0} ", level); |
72 | |||
73 | } | 76 | } |
74 | public void setwelcometext(string text) | 77 | public void setwelcometext(string text) |
75 | { | 78 | { |
76 | m_welcomeMessage = text; | 79 | m_welcomeMessage = text; |
77 | m_log.InfoFormat("[GRID] Login text set to {0} ", text); | 80 | m_log.InfoFormat("[GRID] Login text set to {0} ", text); |
78 | |||
79 | } | 81 | } |
80 | 82 | ||
81 | public override void LogOffUser(UserProfileData theUser, string message) | 83 | public override void LogOffUser(UserProfileData theUser, string message) |