diff --git a/OpenSim/Framework/DAMap.cs b/OpenSim/Framework/DAMap.cs index a57393b2cf..fd45a114d6 100644 --- a/OpenSim/Framework/DAMap.cs +++ b/OpenSim/Framework/DAMap.cs @@ -216,6 +216,12 @@ namespace OpenSim.Framework } } + /// + /// Retrieve a Dynamic Attribute store + /// + /// namespace for the store - use "OpenSim" for in-core modules + /// name of the store within the namespace + /// an OSDMap representing the stored data, or null if not found public OSDMap GetStore(string ns, string storeName) { OSD namespaceOsd; @@ -234,6 +240,12 @@ namespace OpenSim.Framework return null; } + /// + /// Saves a Dynamic attribute store + /// + /// namespace for the store - use "OpenSim" for in-core modules + /// name of the store within the namespace + /// an OSDMap representing the data to store public void SetStore(string ns, string storeName, OSDMap store) { ValidateNamespace(ns);