diff options
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalUserServices.cs | 10 | ||||
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index a7687c7..d8c4b1d 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs | |||
@@ -81,5 +81,15 @@ namespace OpenSim.Region.Communications.Local | |||
81 | 81 | ||
82 | return profile; | 82 | return profile; |
83 | } | 83 | } |
84 | |||
85 | public override UserProfileData SetupMasterUser(libsecondlife.LLUUID uuid) | ||
86 | { | ||
87 | UserProfileData data = GetUserProfile(uuid); | ||
88 | if (data == null) | ||
89 | { | ||
90 | throw new Exception("Unknown master user UUID"); | ||
91 | } | ||
92 | return data; | ||
93 | } | ||
84 | } | 94 | } |
85 | } \ No newline at end of file | 95 | } \ No newline at end of file |
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index d00a813..990998e 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -145,6 +145,16 @@ namespace OpenSim.Region.Communications.OGS1 | |||
145 | return profile; | 145 | return profile; |
146 | } | 146 | } |
147 | 147 | ||
148 | public UserProfileData SetupMasterUser(libsecondlife.LLUUID uuid) | ||
149 | { | ||
150 | UserProfileData data = GetUserProfile(uuid); | ||
151 | if (data == null) | ||
152 | { | ||
153 | throw new Exception("Unknown master user UUID"); | ||
154 | } | ||
155 | return data; | ||
156 | } | ||
157 | |||
148 | public void AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY) | 158 | public void AddUserProfile(string firstName, string lastName, string pass, uint regX, uint regY) |
149 | { | 159 | { |
150 | throw new Exception("The method or operation is not implemented."); | 160 | throw new Exception("The method or operation is not implemented."); |