diff options
author | Justin Clarke Casey | 2009-04-22 22:19:43 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-22 22:19:43 +0000 |
commit | 342126b7b9ca386f9160daecb51ecc14487a5f9f (patch) | |
tree | a485a50aebead411fa2f38528b4c0b7ba19e91db /OpenSim/Data | |
parent | * Resolve http://opensimulator.org/mantis/view.php?id=3509 by passing up the ... (diff) | |
download | opensim-SC_OLD-342126b7b9ca386f9160daecb51ecc14487a5f9f.zip opensim-SC_OLD-342126b7b9ca386f9160daecb51ecc14487a5f9f.tar.gz opensim-SC_OLD-342126b7b9ca386f9160daecb51ecc14487a5f9f.tar.bz2 opensim-SC_OLD-342126b7b9ca386f9160daecb51ecc14487a5f9f.tar.xz |
* Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some service initialization into CommsManager
* What is really needed is a plugin and interface request system as being done for region modules
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/IUserData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IUserData.cs b/OpenSim/Data/IUserData.cs index 573355b..d3631d5 100644 --- a/OpenSim/Data/IUserData.cs +++ b/OpenSim/Data/IUserData.cs | |||
@@ -64,7 +64,7 @@ namespace OpenSim.Data | |||
64 | /// </summary> | 64 | /// </summary> |
65 | /// <param name="queryID">ID associated with the user's query. This must match what the client sent</param> | 65 | /// <param name="queryID">ID associated with the user's query. This must match what the client sent</param> |
66 | /// <param name="query">The filtered contents of the search box when the user hit search.</param> | 66 | /// <param name="query">The filtered contents of the search box when the user hit search.</param> |
67 | /// <returns>A list of user details. If there are no results than either an empty list or null can be returned</returns> | 67 | /// <returns>A list of user details. If there are no results than either an empty list or null</returns> |
68 | List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query); | 68 | List<AvatarPickerAvatar> GeneratePickerResults(UUID queryID, string query); |
69 | 69 | ||
70 | /// <summary> | 70 | /// <summary> |
@@ -140,6 +140,7 @@ namespace OpenSim.Data | |||
140 | /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for UUID friendslistowner | 140 | /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for UUID friendslistowner |
141 | /// </summary> | 141 | /// </summary> |
142 | /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param> | 142 | /// <param name="friendlistowner">The agent that we're retreiving the friends Data.</param> |
143 | /// <returns>The user's friends. If there are no results than either an empty list or null</returns> | ||
143 | List<FriendListItem> GetUserFriendList(UUID friendlistowner); | 144 | List<FriendListItem> GetUserFriendList(UUID friendlistowner); |
144 | 145 | ||
145 | /// <summary> | 146 | /// <summary> |