diff options
author | Adam Frisby | 2007-06-01 18:36:26 +0000 |
---|---|---|
committer | Adam Frisby | 2007-06-01 18:36:26 +0000 |
commit | c60166f3c3c73e25a1bd5a2a3e6f0fab0ae738bf (patch) | |
tree | b16d58fb2df82c1cc231d25ca13e42dadcba9e7a /OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | |
parent | * Added /trunk/share (diff) | |
download | opensim-SC_OLD-c60166f3c3c73e25a1bd5a2a3e6f0fab0ae738bf.zip opensim-SC_OLD-c60166f3c3c73e25a1bd5a2a3e6f0fab0ae738bf.tar.gz opensim-SC_OLD-c60166f3c3c73e25a1bd5a2a3e6f0fab0ae738bf.tar.bz2 opensim-SC_OLD-c60166f3c3c73e25a1bd5a2a3e6f0fab0ae738bf.tar.xz |
* Completed read-only inventory data operations
* Working on write support
Diffstat (limited to 'OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs')
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs index 2b3d826..b43557d 100644 --- a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs +++ b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | |||
@@ -84,5 +84,29 @@ namespace OpenGrid.Framework.Data | |||
84 | /// <param name="folder">The UUID of the folder to be returned</param> | 84 | /// <param name="folder">The UUID of the folder to be returned</param> |
85 | /// <returns>A class containing folder information</returns> | 85 | /// <returns>A class containing folder information</returns> |
86 | InventoryFolderBase getInventoryFolder(LLUUID folder); | 86 | InventoryFolderBase getInventoryFolder(LLUUID folder); |
87 | |||
88 | /// <summary> | ||
89 | /// Creates a new inventory item based on item | ||
90 | /// </summary> | ||
91 | /// <param name="item">The item to be created</param> | ||
92 | void addInventoryItem(InventoryItemBase item); | ||
93 | |||
94 | /// <summary> | ||
95 | /// Updates an inventory item with item (updates based on ID) | ||
96 | /// </summary> | ||
97 | /// <param name="item">The updated item</param> | ||
98 | void updateInventoryItem(InventoryItemBase item); | ||
99 | |||
100 | /// <summary> | ||
101 | /// Adds a new folder specified by folder | ||
102 | /// </summary> | ||
103 | /// <param name="folder">The inventory folder</param> | ||
104 | void addInventoryFolder(InventoryFolderBase folder); | ||
105 | |||
106 | /// <summary> | ||
107 | /// Updates a folder based on its ID with folder | ||
108 | /// </summary> | ||
109 | /// <param name="folder">The inventory folder</param> | ||
110 | void updateInventoryFolder(InventoryFolderBase folder); | ||
87 | } | 111 | } |
88 | } | 112 | } |