From 9af05d0bc3253376cecb7cf6586c53e8067bb2a4 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 23 Jul 2008 22:18:09 +0000 Subject: * refactor: break out inter grid inventory services further * more to follow --- .../Communications/ISecureInventoryService.cs | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'OpenSim/Framework/Communications/ISecureInventoryService.cs') diff --git a/OpenSim/Framework/Communications/ISecureInventoryService.cs b/OpenSim/Framework/Communications/ISecureInventoryService.cs index 0e7861a..1da3115 100644 --- a/OpenSim/Framework/Communications/ISecureInventoryService.cs +++ b/OpenSim/Framework/Communications/ISecureInventoryService.cs @@ -31,7 +31,6 @@ using OpenSim.Framework.Communications.Cache; namespace OpenSim.Framework.Communications { - /// /// Defines all the operations one can perform on a user's inventory. /// @@ -41,6 +40,7 @@ namespace OpenSim.Framework.Communications { get; } + /// /// Request the inventory for a user. This is an asynchronous operation that will call the callback when the /// inventory has been received @@ -105,21 +105,11 @@ namespace OpenSim.Framework.Communications /// true if the inventory was successfully created, false otherwise bool CreateNewUserInventory(LLUUID user); - bool HasInventoryForUser(LLUUID userID); - /// - /// Retrieve the root inventory folder for the given user. + /// Does the given user have an inventory structure? /// /// - /// null if no root folder was found - InventoryFolderBase RequestRootFolder(LLUUID userID); - - /// - /// Returns a list of all the folders in a given user's inventory. - /// - /// - /// A flat list of the user's inventory folder tree, - /// null if there is no inventory for this user - List GetInventorySkeleton(LLUUID userId); + /// + bool HasInventoryForUser(LLUUID userID); } } -- cgit v1.1