diff options
author | Charles Krinke | 2008-11-23 03:38:40 +0000 |
---|---|---|
committer | Charles Krinke | 2008-11-23 03:38:40 +0000 |
commit | 02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8 (patch) | |
tree | f95a3170f3dd41be8ccf10957aef7209492a0279 /OpenSim/Framework/Communications/IUserService.cs | |
parent | Add error handling to catch the WebExceptions thrown if you have (diff) | |
download | opensim-SC_OLD-02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8.zip opensim-SC_OLD-02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8.tar.gz opensim-SC_OLD-02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8.tar.bz2 opensim-SC_OLD-02fd7751d9b89d838fc8ca2dc60fe11f4cfe93a8.tar.xz |
Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:
This patch adds the option of adding the email when you create
a new user. This works in Gridmode as none Gridmode. This
option is also added to RemoteAdminPlugin. With a new handler
you can create a user with a email.
Diffstat (limited to 'OpenSim/Framework/Communications/IUserService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index 50c9917..178b5a0 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -35,15 +35,15 @@ namespace OpenSim.Framework.Communications | |||
35 | /// <summary> | 35 | /// <summary> |
36 | /// Loads a user profile by name | 36 | /// Loads a user profile by name |
37 | /// </summary> | 37 | /// </summary> |
38 | /// <param name="fname">First name</param> | 38 | /// <param name="firstName">First name</param> |
39 | /// <param name="lname">Last name</param> | 39 | /// <param name="lastName">Last name</param> |
40 | /// <returns>A user profile. Returns null if no profile is found</returns> | 40 | /// <returns>A user profile. Returns null if no profile is found</returns> |
41 | UserProfileData GetUserProfile(string firstName, string lastName); | 41 | UserProfileData GetUserProfile(string firstName, string lastName); |
42 | 42 | ||
43 | /// <summary> | 43 | /// <summary> |
44 | /// Loads a user profile from a database by UUID | 44 | /// Loads a user profile from a database by UUID |
45 | /// </summary> | 45 | /// </summary> |
46 | /// <param name="uuid">The target UUID</param> | 46 | /// <param name="userId">The target UUID</param> |
47 | /// <returns>A user profile. Returns null if no user profile is found.</returns> | 47 | /// <returns>A user profile. Returns null if no user profile is found.</returns> |
48 | UserProfileData GetUserProfile(UUID userId); | 48 | UserProfileData GetUserProfile(UUID userId); |
49 | 49 | ||
@@ -90,8 +90,8 @@ namespace OpenSim.Framework.Communications | |||
90 | /// <summary> | 90 | /// <summary> |
91 | /// Logs off a user on the user server | 91 | /// Logs off a user on the user server |
92 | /// </summary> | 92 | /// </summary> |
93 | /// <param name="UserID">UUID of the user</param> | 93 | /// <param name="userid">UUID of the user</param> |
94 | /// <param name="regionID">UUID of the Region</param> | 94 | /// <param name="regionid">UUID of the Region</param> |
95 | /// <param name="regionhandle">regionhandle</param> | 95 | /// <param name="regionhandle">regionhandle</param> |
96 | /// <param name="position">final position</param> | 96 | /// <param name="position">final position</param> |
97 | /// <param name="lookat">final lookat</param> | 97 | /// <param name="lookat">final lookat</param> |
@@ -100,8 +100,8 @@ namespace OpenSim.Framework.Communications | |||
100 | /// <summary> | 100 | /// <summary> |
101 | /// Logs off a user on the user server (deprecated as of 2008-08-27) | 101 | /// Logs off a user on the user server (deprecated as of 2008-08-27) |
102 | /// </summary> | 102 | /// </summary> |
103 | /// <param name="UserID">UUID of the user</param> | 103 | /// <param name="userid">UUID of the user</param> |
104 | /// <param name="regionID">UUID of the Region</param> | 104 | /// <param name="regionid">UUID of the Region</param> |
105 | /// <param name="regionhandle">regionhandle</param> | 105 | /// <param name="regionhandle">regionhandle</param> |
106 | /// <param name="posx">final position x</param> | 106 | /// <param name="posx">final position x</param> |
107 | /// <param name="posy">final position y</param> | 107 | /// <param name="posy">final position y</param> |
@@ -118,7 +118,8 @@ namespace OpenSim.Framework.Communications | |||
118 | /// Updates the current region the User is in | 118 | /// Updates the current region the User is in |
119 | /// </summary> | 119 | /// </summary> |
120 | /// <param name="avatarid">User Region the Avatar is IN</param> | 120 | /// <param name="avatarid">User Region the Avatar is IN</param> |
121 | /// <param name="retionuuid">User Region the Avatar is IN</param> | 121 | /// <param name="regionuuid">User Region the Avatar is IN</param> |
122 | /// <param name="regionhandle">User region handle</param> | ||
122 | void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle); | 123 | void UpdateUserCurrentRegion(UUID avatarid, UUID regionuuid, ulong regionhandle); |
123 | 124 | ||
124 | /// <summary> | 125 | /// <summary> |