From cdcbc48534f19afe7cbdeb6c690e6b7d9f2ff099 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 10 Aug 2009 20:31:51 -0700 Subject: Added two new methods to IIventoryService -- GetFolderForType and GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet. --- .../Inventory/ISessionAuthInventoryService.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs') diff --git a/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs b/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs index 4fc4363..98fd680 100644 --- a/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs +++ b/OpenSim/Services/Connectors/Inventory/ISessionAuthInventoryService.cs @@ -25,6 +25,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +using System.Collections.Generic; using OpenSim.Framework; using OpenSim.Services.Interfaces; using OpenMetaverse; @@ -51,6 +52,22 @@ namespace OpenSim.Services.Connectors void GetUserInventory(string userID, UUID session_id, InventoryReceiptCallback callback); /// + /// Gets the user folder for the given folder-type + /// + /// + /// + /// + List GetSystemFolders(string userID, UUID session_id); + + /// + /// Gets everything (folders and items) inside a folder + /// + /// + /// + /// + InventoryCollection GetFolderContent(string userID, UUID folderID, UUID session_id); + + /// /// Add a new folder to the user's inventory /// /// -- cgit v1.1