Files
libremetaverse/Programs/Simian/Interfaces/IInventoryProvider.cs
John Hurliman 70fe1f8f2a [Simian]
* Initial framework support for multiple simulators. Currently only the first region config is loaded, but the framework is there
* Big reorganization of config and data files
* Started renaming extensions that handle LLUDP packets to start with the LL prefix. Work in progress
* Initial SSL support

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2482 52acb1d6-8a22-11de-b505-999d5b087335
2009-03-12 23:02:42 +00:00

22 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using OpenMetaverse;
namespace Simian
{
public interface IInventoryProvider
{
InventoryItem CreateItem(UUID agentID, string name, string description, InventoryType invType, AssetType type,
UUID assetID, UUID parentID, PermissionMask ownerMask, PermissionMask nextOwnerMask, UUID ownerID,
UUID creatorID, UUID transactionID, uint callbackID);
bool CreateFolder(UUID agentID, UUID folderID, string name, AssetType preferredType, UUID parentID, UUID ownerID);
bool CreateRootFolder(UUID agentID, UUID folderID, string name, UUID ownerID);
OpenMetaverse.InventoryFolder[] CreateInventorySkeleton(UUID agentID);
InventoryObject MoveInventory(UUID agentID, UUID objectID, UUID newFolderID, string newName, UUID transactionID,
uint callbackID);
void PurgeFolder(UUID agentID, UUID folderID);
bool TryGetInventory(UUID agentID, UUID objectID, out InventoryObject obj);
bool InventoryExists(UUID agentID);
}
}