aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IUserService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Interfaces/IUserService.cs')
-rw-r--r--OpenSim/Services/Interfaces/IUserService.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs
index 823a86d..eb77bd4 100644
--- a/OpenSim/Services/Interfaces/IUserService.cs
+++ b/OpenSim/Services/Interfaces/IUserService.cs
@@ -35,7 +35,7 @@ namespace OpenSim.Services.Interfaces
35 public string FirstName; 35 public string FirstName;
36 public string LastName; 36 public string LastName;
37 public UUID UserID; 37 public UUID UserID;
38 public UUID scopeID; 38 public UUID ScopeID;
39 39
40 // For informational purposes only! 40 // For informational purposes only!
41 // 41 //
@@ -59,7 +59,7 @@ namespace OpenSim.Services.Interfaces
59 public string AccountType; 59 public string AccountType;
60 }; 60 };
61 61
62 public interface IUserService 62 public interface IUserDataService
63 { 63 {
64 UserData GetUserData(UUID scopeID, UUID userID); 64 UserData GetUserData(UUID scopeID, UUID userID);
65 UserData GetUserData(UUID scopeID, string FirstName, string LastName); 65 UserData GetUserData(UUID scopeID, string FirstName, string LastName);
@@ -71,7 +71,6 @@ namespace OpenSim.Services.Interfaces
71 71
72 // Returns the list of avatars that matches both the search 72 // Returns the list of avatars that matches both the search
73 // criterion and the scope ID passed 73 // criterion and the scope ID passed
74 // ONLY THE NAME, SCOPE ID and UUID will be filled in!
75 // 74 //
76 List<UserData> GetAvatarPickerData(UUID scopeID, string query); 75 List<UserData> GetAvatarPickerData(UUID scopeID, string query);
77 } 76 }