diff options
Diffstat (limited to 'OpenSim/Data/IRegionProfileService.cs')
-rw-r--r-- | OpenSim/Data/IRegionProfileService.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenSim/Data/IRegionProfileService.cs b/OpenSim/Data/IRegionProfileService.cs index 0f0ca6f..7a2b46f 100644 --- a/OpenSim/Data/IRegionProfileService.cs +++ b/OpenSim/Data/IRegionProfileService.cs | |||
@@ -35,6 +35,30 @@ namespace OpenSim.Data | |||
35 | public interface IRegionProfileService | 35 | public interface IRegionProfileService |
36 | { | 36 | { |
37 | /// <summary> | 37 | /// <summary> |
38 | /// Returns a region by argument | ||
39 | /// </summary> | ||
40 | /// <param name="uuid">A UUID key of the region to return</param> | ||
41 | /// <returns>A SimProfileData for the region</returns> | ||
42 | RegionProfileData GetRegion(UUID uuid); | ||
43 | |||
44 | /// <summary> | ||
45 | /// Returns a region by argument | ||
46 | /// </summary> | ||
47 | /// <param name="uuid">A regionHandle of the region to return</param> | ||
48 | /// <returns>A SimProfileData for the region</returns> | ||
49 | RegionProfileData GetRegion(ulong handle); | ||
50 | |||
51 | /// <summary> | ||
52 | /// Returns a region by argument | ||
53 | /// </summary> | ||
54 | /// <param name="regionName">A partial regionName of the region to return</param> | ||
55 | /// <returns>A SimProfileData for the region</returns> | ||
56 | RegionProfileData GetRegion(string regionName); | ||
57 | } | ||
58 | |||
59 | public interface IRegionProfileRouter | ||
60 | { | ||
61 | /// <summary> | ||
38 | /// Request sim profile information from a grid server, by Region UUID | 62 | /// Request sim profile information from a grid server, by Region UUID |
39 | /// </summary> | 63 | /// </summary> |
40 | /// <param name="regionId">The region UUID to look for</param> | 64 | /// <param name="regionId">The region UUID to look for</param> |