aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IUserService.cs
diff options
context:
space:
mode:
authorlbsa712009-04-08 19:59:37 +0000
committerlbsa712009-04-08 19:59:37 +0000
commite93b782f9d86e4049a28d7f90c691dc5d242f234 (patch)
tree892fcce074d5e5a817c0b14d2a5e4fefe1b692a9 /OpenSim/Framework/Communications/IUserService.cs
parent* Make it possible to store creator strings in user inventory items as well a... (diff)
downloadopensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.zip
opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.gz
opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.bz2
opensim-SC_OLD-e93b782f9d86e4049a28d7f90c691dc5d242f234.tar.xz
* Introduced some experimental code with regards to asset data substitution
Diffstat (limited to 'OpenSim/Framework/Communications/IUserService.cs')
-rw-r--r--OpenSim/Framework/Communications/IUserService.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs
index 0846024..38c360a 100644
--- a/OpenSim/Framework/Communications/IUserService.cs
+++ b/OpenSim/Framework/Communications/IUserService.cs
@@ -25,6 +25,7 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System;
28using System.Collections.Generic; 29using System.Collections.Generic;
29using OpenMetaverse; 30using OpenMetaverse;
30 31
@@ -46,6 +47,8 @@ namespace OpenSim.Framework.Communications
46 /// <param name="userId">The target UUID</param> 47 /// <param name="userId">The target UUID</param>
47 /// <returns>A user profile. Returns null if no user profile is found.</returns> 48 /// <returns>A user profile. Returns null if no user profile is found.</returns>
48 UserProfileData GetUserProfile(UUID userId); 49 UserProfileData GetUserProfile(UUID userId);
50
51 UserProfileData GetUserProfile(Uri uri);
49 52
50 UserAgentData GetAgentByUUID(UUID userId); 53 UserAgentData GetAgentByUUID(UUID userId);
51 54