diff options
author | Diva Canto | 2009-08-12 13:11:15 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-12 13:11:15 -0700 |
commit | 41ad610f3e44d2c73451ab49b71e697259c8c965 (patch) | |
tree | 10d603980cd911d0e39c6c764bdcce561713a61a /OpenSim/Framework/InventoryFolderBase.cs | |
parent | Better test for dropping inventory cache and writing out debug messages. (diff) | |
download | opensim-SC_OLD-41ad610f3e44d2c73451ab49b71e697259c8c965.zip opensim-SC_OLD-41ad610f3e44d2c73451ab49b71e697259c8c965.tar.gz opensim-SC_OLD-41ad610f3e44d2c73451ab49b71e697259c8c965.tar.bz2 opensim-SC_OLD-41ad610f3e44d2c73451ab49b71e697259c8c965.tar.xz |
* Added two new packet handler implementations for inventory ops. This is starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops.
* Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service.
* Added if (m_Enabled) upon RemoveRegion
Diffstat (limited to 'OpenSim/Framework/InventoryFolderBase.cs')
-rw-r--r-- | OpenSim/Framework/InventoryFolderBase.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/OpenSim/Framework/InventoryFolderBase.cs b/OpenSim/Framework/InventoryFolderBase.cs index e923f39..05f11a4 100644 --- a/OpenSim/Framework/InventoryFolderBase.cs +++ b/OpenSim/Framework/InventoryFolderBase.cs | |||
@@ -68,5 +68,24 @@ namespace OpenSim.Framework | |||
68 | get { return _version; } | 68 | get { return _version; } |
69 | set { _version = value; } | 69 | set { _version = value; } |
70 | } | 70 | } |
71 | |||
72 | public InventoryFolderBase() | ||
73 | { | ||
74 | } | ||
75 | |||
76 | public InventoryFolderBase(UUID id) | ||
77 | { | ||
78 | ID = id; | ||
79 | } | ||
80 | |||
81 | public InventoryFolderBase(UUID id, string name, UUID owner, short type, UUID parent, ushort version) | ||
82 | { | ||
83 | ID = id; | ||
84 | Name = name; | ||
85 | Owner = owner; | ||
86 | Type = type; | ||
87 | ParentID = parent; | ||
88 | Version = version; | ||
89 | } | ||
71 | } | 90 | } |
72 | } | 91 | } |