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/Framework/Communications/IUserService.cs | |
parent | * Add user data plugin to store temporary profiles (which are distinct from c... (diff) | |
download | opensim-SC-0d51c22620315f125ddbd3fe501eb93f318038d8.zip opensim-SC-0d51c22620315f125ddbd3fe501eb93f318038d8.tar.gz opensim-SC-0d51c22620315f125ddbd3fe501eb93f318038d8.tar.bz2 opensim-SC-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/Framework/Communications/IUserService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IUserService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index fb24c15..9a3e211 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs | |||
@@ -34,6 +34,13 @@ namespace OpenSim.Framework.Communications | |||
34 | public interface IUserService | 34 | public interface IUserService |
35 | { | 35 | { |
36 | /// <summary> | 36 | /// <summary> |
37 | /// Add a temporary user profile. | ||
38 | /// </summary> | ||
39 | /// A temporary user profile is one that should exist only for the lifetime of the process. | ||
40 | /// <param name="userProfile"></param> | ||
41 | void AddTemporaryUserProfile(UserProfileData userProfile); | ||
42 | |||
43 | /// <summary> | ||
37 | /// Loads a user profile by name | 44 | /// Loads a user profile by name |
38 | /// </summary> | 45 | /// </summary> |
39 | /// <param name="firstName">First name</param> | 46 | /// <param name="firstName">First name</param> |