aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorlbsa712009-02-26 11:50:49 +0000
committerlbsa712009-02-26 11:50:49 +0000
commit5b5b7845991f284c55ffe8758382eb3f06f7d840 (patch)
tree08e0a34d160fa94d901e9722b4b4443ba727e08d /OpenSim/Data
parent* renamed IRegionProfileService to IRegionProfileRouter to better reflect use... (diff)
downloadopensim-SC_OLD-5b5b7845991f284c55ffe8758382eb3f06f7d840.zip
opensim-SC_OLD-5b5b7845991f284c55ffe8758382eb3f06f7d840.tar.gz
opensim-SC_OLD-5b5b7845991f284c55ffe8758382eb3f06f7d840.tar.bz2
opensim-SC_OLD-5b5b7845991f284c55ffe8758382eb3f06f7d840.tar.xz
* Got rid of concrete GridDBService references
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/IRegionProfileService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/IRegionProfileService.cs b/OpenSim/Data/IRegionProfileService.cs
index 7a2b46f..b3acc52 100644
--- a/OpenSim/Data/IRegionProfileService.cs
+++ b/OpenSim/Data/IRegionProfileService.cs
@@ -54,6 +54,11 @@ namespace OpenSim.Data
54 /// <param name="regionName">A partial regionName of the region to return</param> 54 /// <param name="regionName">A partial regionName of the region to return</param>
55 /// <returns>A SimProfileData for the region</returns> 55 /// <returns>A SimProfileData for the region</returns>
56 RegionProfileData GetRegion(string regionName); 56 RegionProfileData GetRegion(string regionName);
57
58 List<RegionProfileData> GetRegions(uint xmin, uint ymin, uint xmax, uint ymax);
59 List<RegionProfileData> GetRegions(string name, int maxNum);
60 DataResponse AddUpdateRegion(RegionProfileData sim, RegionProfileData existingSim);
61 DataResponse DeleteRegion(string uuid);
57 } 62 }
58 63
59 public interface IRegionProfileRouter 64 public interface IRegionProfileRouter