diff options
author | Diva Canto | 2009-09-18 19:16:30 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-18 19:16:30 -0700 |
commit | e7362738155c0a0a5c9ef8b867eb14b18bb31a44 (patch) | |
tree | 527dba75b3d61ecbf2a18df0e2b2467376a569e1 /OpenSim/Data/IRegionData.cs | |
parent | Add the Null storage implementation for the RegionData service. Standalones (diff) | |
download | opensim-SC_OLD-e7362738155c0a0a5c9ef8b867eb14b18bb31a44.zip opensim-SC_OLD-e7362738155c0a0a5c9ef8b867eb14b18bb31a44.tar.gz opensim-SC_OLD-e7362738155c0a0a5c9ef8b867eb14b18bb31a44.tar.bz2 opensim-SC_OLD-e7362738155c0a0a5c9ef8b867eb14b18bb31a44.tar.xz |
First pass at the grid service.
Diffstat (limited to 'OpenSim/Data/IRegionData.cs')
-rw-r--r-- | OpenSim/Data/IRegionData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IRegionData.cs b/OpenSim/Data/IRegionData.cs index 71dd525..c5201ea 100644 --- a/OpenSim/Data/IRegionData.cs +++ b/OpenSim/Data/IRegionData.cs | |||
@@ -45,7 +45,7 @@ namespace OpenSim.Data | |||
45 | /// <summary> | 45 | /// <summary> |
46 | /// An interface for connecting to the authentication datastore | 46 | /// An interface for connecting to the authentication datastore |
47 | /// </summary> | 47 | /// </summary> |
48 | public interface IRegionData | 48 | public interface IRegionData |
49 | { | 49 | { |
50 | RegionData Get(UUID regionID, UUID ScopeID); | 50 | RegionData Get(UUID regionID, UUID ScopeID); |
51 | List<RegionData> Get(string regionName, UUID ScopeID); | 51 | List<RegionData> Get(string regionName, UUID ScopeID); |
@@ -57,5 +57,6 @@ namespace OpenSim.Data | |||
57 | bool SetDataItem(UUID principalID, string item, string value); | 57 | bool SetDataItem(UUID principalID, string item, string value); |
58 | 58 | ||
59 | bool Delete(UUID regionID); | 59 | bool Delete(UUID regionID); |
60 | |||
60 | } | 61 | } |
61 | } | 62 | } |