From 6ba89bef6130707d5cec505b7339e765ec4f58ff Mon Sep 17 00:00:00 2001 From: Melanie Date: Sun, 9 Aug 2009 22:09:10 +0100 Subject: More renames --- OpenSim/Services/Interfaces/IUserService.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'OpenSim/Services/Interfaces/IUserService.cs') diff --git a/OpenSim/Services/Interfaces/IUserService.cs b/OpenSim/Services/Interfaces/IUserService.cs index 05eda97..8ea207a 100644 --- a/OpenSim/Services/Interfaces/IUserService.cs +++ b/OpenSim/Services/Interfaces/IUserService.cs @@ -95,24 +95,24 @@ namespace OpenSim.Services.Interfaces public interface IUserAccountDataService { - UserData GetUserAccountData(UUID scopeID, UUID userID); - UserData GetUserAccountData(UUID scopeID, string FirstName, string LastName); + UserAccountData GetUserAccountData(UUID scopeID, UUID userID); + UserAccountData GetUserAccountData(UUID scopeID, string FirstName, string LastName); + // Returns the list of avatars that matches both the search + // criterion and the scope ID passed + // + List GetUserAccountData(UUID scopeID, string query); + // This will set only the home region portion of the data! // Can't be used to set god level, flags, type or change the name! // - bool SetHomePosition(UserData data, UUID RegionID, UUID RegionSecret); + bool SetHomePosition(UserAccountData data, UUID RegionID, UUID RegionSecret); // Update all updatable fields // - bool SetUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); + bool SetUserAccountData(UserAccountData data, UUID PrincipalID, UUID SessionID); - // Returns the list of avatars that matches both the search - // criterion and the scope ID passed - // - List GetAvatarPickerData(UUID scopeID, string query); - // Creates a user data record - bool CreateUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); + bool CreateUserAccountData(UserAccountData data, UUID PrincipalID, UUID SessionID); } } -- cgit v1.1