aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/UserServer/UserManager.cs')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
index 20f3b95..1fbd421 100644
--- a/OpenSim/Grid/UserServer/UserManager.cs
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -159,5 +159,15 @@ namespace OpenSim.Grid.UserServer
159 return ProfileToXmlRPCResponse(userProfile); 159 return ProfileToXmlRPCResponse(userProfile);
160 } 160 }
161 #endregion 161 #endregion
162
163 public override UserProfileData SetupMasterUser(string firstName, string lastName)
164 {
165 throw new Exception("The method or operation is not implemented.");
166 }
167
168 public override UserProfileData SetupMasterUser(string firstName, string lastName, string password)
169 {
170 throw new Exception("The method or operation is not implemented.");
171 }
162 } 172 }
163} 173}