diff options
author | Justin Clarke Casey | 2008-04-10 15:22:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-10 15:22:01 +0000 |
commit | ded704ef1f3e78c3915278b145f7eef33d5b17d2 (patch) | |
tree | f07029088acd69a59331eb210751838546755bab /OpenSim/Grid | |
parent | renaming of attributes in UserAgentData for readability (diff) | |
download | opensim-SC_OLD-ded704ef1f3e78c3915278b145f7eef33d5b17d2.zip opensim-SC_OLD-ded704ef1f3e78c3915278b145f7eef33d5b17d2.tar.gz opensim-SC_OLD-ded704ef1f3e78c3915278b145f7eef33d5b17d2.tar.bz2 opensim-SC_OLD-ded704ef1f3e78c3915278b145f7eef33d5b17d2.tar.xz |
* Minor inventory message cleanup and documentation
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/InventoryServer/GridInventoryService.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs index f08c1e5..ffff89f 100644 --- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs +++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs | |||
@@ -89,7 +89,11 @@ namespace OpenSim.Grid.InventoryServer | |||
89 | return allFolders; | 89 | return allFolders; |
90 | } | 90 | } |
91 | 91 | ||
92 | 92 | /// <summary> | |
93 | /// Return a user's entire inventory | ||
94 | /// </summary> | ||
95 | /// <param name="rawUserID"></param> | ||
96 | /// <returns></returns> | ||
93 | public InventoryCollection GetUserInventory(Guid rawUserID) | 97 | public InventoryCollection GetUserInventory(Guid rawUserID) |
94 | { | 98 | { |
95 | LLUUID userID = new LLUUID(rawUserID); | 99 | LLUUID userID = new LLUUID(rawUserID); |
@@ -134,6 +138,11 @@ namespace OpenSim.Grid.InventoryServer | |||
134 | return GetInventorySkeleton(userID); | 138 | return GetInventorySkeleton(userID); |
135 | } | 139 | } |
136 | 140 | ||
141 | /// <summary> | ||
142 | /// Create an inventory for the given user. | ||
143 | /// </summary> | ||
144 | /// <param name="rawUserID"></param> | ||
145 | /// <returns></returns> | ||
137 | public bool CreateUsersInventory(Guid rawUserID) | 146 | public bool CreateUsersInventory(Guid rawUserID) |
138 | { | 147 | { |
139 | LLUUID userID = new LLUUID(rawUserID); | 148 | LLUUID userID = new LLUUID(rawUserID); |