aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IInventoryServices.cs
diff options
context:
space:
mode:
authorMW2008-02-13 14:45:13 +0000
committerMW2008-02-13 14:45:13 +0000
commit49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641 (patch)
treeac5c1949a294220c9e1949fd51e35f50d5cc220e /OpenSim/Framework/Communications/IInventoryServices.cs
parent* Copied 'Friends' functionality from the MySQLUserData to MSSQLUserData (diff)
downloadopensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.zip
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.gz
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.bz2
opensim-SC_OLD-49a5a00b8083ab5c2bdaa6a4c2528cc6e0989641.tar.xz
Added a method to access a named folder in a users inventory, to the inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
Diffstat (limited to 'OpenSim/Framework/Communications/IInventoryServices.cs')
-rw-r--r--OpenSim/Framework/Communications/IInventoryServices.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/IInventoryServices.cs b/OpenSim/Framework/Communications/IInventoryServices.cs
index ddb19ba..0e09613 100644
--- a/OpenSim/Framework/Communications/IInventoryServices.cs
+++ b/OpenSim/Framework/Communications/IInventoryServices.cs
@@ -88,5 +88,13 @@ namespace OpenSim.Framework.Communications
88 /// <param name="userID"></param> 88 /// <param name="userID"></param>
89 /// <returns></returns> 89 /// <returns></returns>
90 List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID); 90 List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID);
91
92 /// <summary>
93 /// Returns the named folder in that users inventory, returns null if folder is not found.
94 /// </summary>
95 /// <param name="userID"></param>
96 /// <param name="folderName"></param>
97 /// <returns></returns>
98 InventoryFolderBase RequestNamedFolder(LLUUID userID, string folderName);
91 } 99 }
92} \ No newline at end of file 100} \ No newline at end of file