diff options
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs b/OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs index 0fcafcc..085b5ca 100644 --- a/OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs +++ b/OpenSim/Region/Framework/Interfaces/ISimulationDataService.cs | |||
@@ -116,5 +116,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
116 | /// <param name="regionUUID">the region UUID</param> | 116 | /// <param name="regionUUID">the region UUID</param> |
117 | void RemoveRegionEnvironmentSettings(UUID regionUUID); | 117 | void RemoveRegionEnvironmentSettings(UUID regionUUID); |
118 | 118 | ||
119 | void SaveExtra(UUID regionID, string name, string value); | ||
120 | |||
121 | void RemoveExtra(UUID regionID, string name); | ||
122 | |||
123 | Dictionary<string, string> GetExtra(UUID regionID); | ||
119 | } | 124 | } |
120 | } | 125 | } |
diff --git a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs index e424976..3787ca0 100644 --- a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs +++ b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs | |||
@@ -127,6 +127,12 @@ namespace OpenSim.Region.Framework.Interfaces | |||
127 | /// <param name="regionUUID">the region UUID</param> | 127 | /// <param name="regionUUID">the region UUID</param> |
128 | void RemoveRegionEnvironmentSettings(UUID regionUUID); | 128 | void RemoveRegionEnvironmentSettings(UUID regionUUID); |
129 | 129 | ||
130 | void SaveExtra(UUID regionID, string name, string val); | ||
131 | |||
132 | void RemoveExtra(UUID regionID, string name); | ||
133 | |||
134 | Dictionary<string, string> GetExtra(UUID regionID); | ||
135 | |||
130 | void Shutdown(); | 136 | void Shutdown(); |
131 | } | 137 | } |
132 | } | 138 | } |