diff options
author | Sean Dague | 2008-04-02 15:22:39 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-02 15:22:39 +0000 |
commit | 35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212 (patch) | |
tree | d0ce7aab84032a1daf50aac05a58a8f55a01f301 /OpenSim/Data/UserDataBase.cs | |
parent | * Add some temporary task inventory item inflation debug messages to investig... (diff) | |
download | opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.zip opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.gz opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.bz2 opensim-SC_OLD-35420b21a3a0a3e8f104f7ce1c9d6c091a8f5212.tar.xz |
reorganizing namespaces to put all the Data stuff into it's own namespace
/ dir structure. This is coming in over a few changesets so consider trunk
broken for the next 30 minutes as these get pulled together.
Diffstat (limited to 'OpenSim/Data/UserDataBase.cs')
-rw-r--r-- | OpenSim/Data/UserDataBase.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/OpenSim/Data/UserDataBase.cs b/OpenSim/Data/UserDataBase.cs new file mode 100644 index 0000000..5e0be45 --- /dev/null +++ b/OpenSim/Data/UserDataBase.cs | |||
@@ -0,0 +1,29 @@ | |||
1 | using System.Collections.Generic; | ||
2 | using libsecondlife; | ||
3 | |||
4 | namespace OpenSim.Framework.Data | ||
5 | { | ||
6 | public abstract class UserDataBase : IUserData | ||
7 | { | ||
8 | public abstract UserProfileData GetUserByUUID(LLUUID user); | ||
9 | public abstract UserProfileData GetUserByName(string fname, string lname); | ||
10 | public abstract UserAgentData GetAgentByUUID(LLUUID user); | ||
11 | public abstract UserAgentData GetAgentByName(string name); | ||
12 | public abstract UserAgentData GetAgentByName(string fname, string lname); | ||
13 | public abstract void StoreWebLoginKey(LLUUID agentID, LLUUID webLoginKey); | ||
14 | public abstract void AddNewUserProfile(UserProfileData user); | ||
15 | public abstract bool UpdateUserProfile(UserProfileData user); | ||
16 | public abstract void UpdateUserCurrentRegion(LLUUID avatarid, LLUUID regionuuid); | ||
17 | public abstract void AddNewUserAgent(UserAgentData agent); | ||
18 | public abstract void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms); | ||
19 | public abstract void RemoveUserFriend(LLUUID friendlistowner, LLUUID friend); | ||
20 | public abstract void UpdateUserFriendPerms(LLUUID friendlistowner, LLUUID friend, uint perms); | ||
21 | public abstract List<FriendListItem> GetUserFriendList(LLUUID friendlistowner); | ||
22 | public abstract bool MoneyTransferRequest(LLUUID from, LLUUID to, uint amount); | ||
23 | public abstract bool InventoryTransferRequest(LLUUID from, LLUUID to, LLUUID inventory); | ||
24 | public abstract string GetVersion(); | ||
25 | public abstract string getName(); | ||
26 | public abstract void Initialise(); | ||
27 | public abstract List<OpenSim.Framework.AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); | ||
28 | } | ||
29 | } | ||