OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
IInventoryService.cs
Go to the documentation of this file.
1 /*
2  * Copyright (c) Contributors, http://opensimulator.org/
3  * See CONTRIBUTORS.TXT for a full list of copyright holders.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of the OpenSimulator Project nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 using System;
29 using System.Collections.Generic;
30 using OpenSim.Framework;
31 using OpenMetaverse;
32 
33 namespace OpenSim.Services.Interfaces
34 {
38  public delegate void InventoryReceiptCallback(
39  ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items);
40 
41  public interface IInventoryService
42  {
48  bool CreateUserInventory(UUID user);
49 
55  List<InventoryFolderBase> GetInventorySkeleton(UUID userId);
56 
62  InventoryFolderBase GetRootFolder(UUID userID);
63 
70  InventoryFolderBase GetFolderForType(UUID userID, FolderType type);
71 
78  InventoryCollection GetFolderContent(UUID userID, UUID folderID);
79 
86  InventoryCollection[] GetMultipleFoldersContent(UUID userID, UUID[] folderIDs);
87 
94  List<InventoryItemBase> GetFolderItems(UUID userID, UUID folderID);
95 
101  bool AddFolder(InventoryFolderBase folder);
102 
108  bool UpdateFolder(InventoryFolderBase folder);
109 
115  bool MoveFolder(InventoryFolderBase folder);
116 
122  //bool DeleteItem(InventoryItemBase item);
123  bool DeleteFolders(UUID userID, List<UUID> folderIDs);
124 
130  bool PurgeFolder(InventoryFolderBase folder);
131 
140  bool AddItem(InventoryItemBase item);
141 
147  bool UpdateItem(InventoryItemBase item);
148 
149  bool MoveItems(UUID ownerID, List<InventoryItemBase> items);
150 
156  //bool DeleteItem(InventoryItemBase item);
157  bool DeleteItems(UUID userID, List<UUID> itemIDs);
158 
164  InventoryItemBase GetItem(InventoryItemBase item);
165 
171  InventoryItemBase[] GetMultipleItems(UUID userID, UUID[] ids);
172 
178  InventoryFolderBase GetFolder(InventoryFolderBase folder);
179 
185  bool HasInventoryForUser(UUID userID);
186 
192  List<InventoryItemBase> GetActiveGestures(UUID userId);
193 
202  int GetAssetPermissions(UUID userID, UUID assetID);
203  }
204 }
delegate UUID UpdateItem(UUID itemID, byte[] data)
Inventory Item - contains all the properties associated with an individual inventory piece...
delegate void InventoryReceiptCallback(ICollection< InventoryFolderImpl > folders, ICollection< InventoryItemBase > items)
Callback used when a user's inventory is received from the inventory service
Used to serialize a whole inventory for transfer over the network.