diff options
author | Melanie | 2009-08-09 22:09:10 +0100 |
---|---|---|
committer | Melanie | 2009-08-09 22:09:10 +0100 |
commit | 6ba89bef6130707d5cec505b7339e765ec4f58ff (patch) | |
tree | 086a92d327fe27929881b648f468d2b17c5a9040 /OpenSim/Services | |
parent | Rename UserData to UserAccount data (diff) | |
download | opensim-SC_OLD-6ba89bef6130707d5cec505b7339e765ec4f58ff.zip opensim-SC_OLD-6ba89bef6130707d5cec505b7339e765ec4f58ff.tar.gz opensim-SC_OLD-6ba89bef6130707d5cec505b7339e765ec4f58ff.tar.bz2 opensim-SC_OLD-6ba89bef6130707d5cec505b7339e765ec4f58ff.tar.xz |
More renames
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserService.cs | 20 |
1 files changed, 10 insertions, 10 deletions
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 | |||
95 | 95 | ||
96 | public interface IUserAccountDataService | 96 | public interface IUserAccountDataService |
97 | { | 97 | { |
98 | UserData GetUserAccountData(UUID scopeID, UUID userID); | 98 | UserAccountData GetUserAccountData(UUID scopeID, UUID userID); |
99 | UserData GetUserAccountData(UUID scopeID, string FirstName, string LastName); | 99 | UserAccountData GetUserAccountData(UUID scopeID, string FirstName, string LastName); |
100 | // Returns the list of avatars that matches both the search | ||
101 | // criterion and the scope ID passed | ||
102 | // | ||
103 | List<UserAccountData> GetUserAccountData(UUID scopeID, string query); | ||
104 | |||
100 | 105 | ||
101 | // This will set only the home region portion of the data! | 106 | // This will set only the home region portion of the data! |
102 | // Can't be used to set god level, flags, type or change the name! | 107 | // Can't be used to set god level, flags, type or change the name! |
103 | // | 108 | // |
104 | bool SetHomePosition(UserData data, UUID RegionID, UUID RegionSecret); | 109 | bool SetHomePosition(UserAccountData data, UUID RegionID, UUID RegionSecret); |
105 | 110 | ||
106 | // Update all updatable fields | 111 | // Update all updatable fields |
107 | // | 112 | // |
108 | bool SetUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); | 113 | bool SetUserAccountData(UserAccountData data, UUID PrincipalID, UUID SessionID); |
109 | 114 | ||
110 | // Returns the list of avatars that matches both the search | ||
111 | // criterion and the scope ID passed | ||
112 | // | ||
113 | List<UserData> GetAvatarPickerData(UUID scopeID, string query); | ||
114 | |||
115 | // Creates a user data record | 115 | // Creates a user data record |
116 | bool CreateUserAccountData(UserData data, UUID PrincipalID, UUID SessionID); | 116 | bool CreateUserAccountData(UserAccountData data, UUID PrincipalID, UUID SessionID); |
117 | } | 117 | } |
118 | } | 118 | } |