diff options
author | Justin Clarke Casey | 2009-04-23 18:57:39 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-23 18:57:39 +0000 |
commit | 0d51c22620315f125ddbd3fe501eb93f318038d8 (patch) | |
tree | 31cf4ba3cc962497c0589dc12eb5642240670d13 /OpenSim/Data/IUserData.cs | |
parent | * Add user data plugin to store temporary profiles (which are distinct from c... (diff) | |
download | opensim-SC_OLD-0d51c22620315f125ddbd3fe501eb93f318038d8.zip opensim-SC_OLD-0d51c22620315f125ddbd3fe501eb93f318038d8.tar.gz opensim-SC_OLD-0d51c22620315f125ddbd3fe501eb93f318038d8.tar.bz2 opensim-SC_OLD-0d51c22620315f125ddbd3fe501eb93f318038d8.tar.xz |
* Allow interested user data plugins to store temporary user profiles
* Database and the OGS1 plugins are not interested and hence ignore these calls
Diffstat (limited to 'OpenSim/Data/IUserData.cs')
-rw-r--r-- | OpenSim/Data/IUserData.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Data/IUserData.cs b/OpenSim/Data/IUserData.cs index d3631d5..79ba27b 100644 --- a/OpenSim/Data/IUserData.cs +++ b/OpenSim/Data/IUserData.cs | |||
@@ -101,8 +101,15 @@ namespace OpenSim.Data | |||
101 | /// <param name="user">UserProfile to add</param> | 101 | /// <param name="user">UserProfile to add</param> |
102 | void AddNewUserProfile(UserProfileData user); | 102 | void AddNewUserProfile(UserProfileData user); |
103 | 103 | ||
104 | /// <summary></summary> | 104 | /// <summary> |
105 | /// Updates an existing user profile | 105 | /// Adds a temporary user profile. A temporary userprofile is one that should exist only for the lifetime of |
106 | /// the process. | ||
107 | /// </summary> | ||
108 | /// <param name="userProfile"></param> | ||
109 | void AddTemporaryUserProfile(UserProfileData userProfile); | ||
110 | |||
111 | /// <summary> | ||
112 | /// Updates an existing user profile | ||
106 | /// </summary> | 113 | /// </summary> |
107 | /// <param name="user">UserProfile to update</param> | 114 | /// <param name="user">UserProfile to update</param> |
108 | bool UpdateUserProfile(UserProfileData user); | 115 | bool UpdateUserProfile(UserProfileData user); |