diff options
author | Sean Dague | 2009-02-12 18:59:45 +0000 |
---|---|---|
committer | Sean Dague | 2009-02-12 18:59:45 +0000 |
commit | 5959e426834b49c9048b862506e9db50870ef867 (patch) | |
tree | 6d6ad1c1d64e9f9d6474fd89c59d99b22b2b4bbc /OpenSim/Data/IRegionProfileService.cs | |
parent | * Lock remaining m_rpcHandlers use since these accesses are not guaranteed to... (diff) | |
download | opensim-SC_OLD-5959e426834b49c9048b862506e9db50870ef867.zip opensim-SC_OLD-5959e426834b49c9048b862506e9db50870ef867.tar.gz opensim-SC_OLD-5959e426834b49c9048b862506e9db50870ef867.tar.bz2 opensim-SC_OLD-5959e426834b49c9048b862506e9db50870ef867.tar.xz |
large scale fix for svn props after "the great refactor"
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IRegionProfileService.cs | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/OpenSim/Data/IRegionProfileService.cs b/OpenSim/Data/IRegionProfileService.cs index 7c41f1a..525f909 100644 --- a/OpenSim/Data/IRegionProfileService.cs +++ b/OpenSim/Data/IRegionProfileService.cs | |||
@@ -1,44 +1,44 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenMetaverse; | 4 | using OpenMetaverse; |
5 | 5 | ||
6 | namespace OpenSim.Data | 6 | namespace OpenSim.Data |
7 | { | 7 | { |
8 | public interface IRegionProfileService | 8 | public interface IRegionProfileService |
9 | { | 9 | { |
10 | /// <summary> | 10 | /// <summary> |
11 | /// Request sim profile information from a grid server, by Region UUID | 11 | /// Request sim profile information from a grid server, by Region UUID |
12 | /// </summary> | 12 | /// </summary> |
13 | /// <param name="regionId">The region UUID to look for</param> | 13 | /// <param name="regionId">The region UUID to look for</param> |
14 | /// <param name="gridserverUrl"></param> | 14 | /// <param name="gridserverUrl"></param> |
15 | /// <param name="gridserverSendkey"></param> | 15 | /// <param name="gridserverSendkey"></param> |
16 | /// <param name="gridserverRecvkey"></param> | 16 | /// <param name="gridserverRecvkey"></param> |
17 | /// <returns>The sim profile. Null if there was a request failure</returns> | 17 | /// <returns>The sim profile. Null if there was a request failure</returns> |
18 | /// <remarks>This method should be statics</remarks> | 18 | /// <remarks>This method should be statics</remarks> |
19 | RegionProfileData RequestSimProfileData(UUID regionId, Uri gridserverUrl, | 19 | RegionProfileData RequestSimProfileData(UUID regionId, Uri gridserverUrl, |
20 | string gridserverSendkey, string gridserverRecvkey); | 20 | string gridserverSendkey, string gridserverRecvkey); |
21 | 21 | ||
22 | /// <summary> | 22 | /// <summary> |
23 | /// Request sim profile information from a grid server, by Region Handle | 23 | /// Request sim profile information from a grid server, by Region Handle |
24 | /// </summary> | 24 | /// </summary> |
25 | /// <param name="regionHandle">the region handle to look for</param> | 25 | /// <param name="regionHandle">the region handle to look for</param> |
26 | /// <param name="gridserverUrl"></param> | 26 | /// <param name="gridserverUrl"></param> |
27 | /// <param name="gridserverSendkey"></param> | 27 | /// <param name="gridserverSendkey"></param> |
28 | /// <param name="gridserverRecvkey"></param> | 28 | /// <param name="gridserverRecvkey"></param> |
29 | /// <returns>The sim profile. Null if there was a request failure</returns> | 29 | /// <returns>The sim profile. Null if there was a request failure</returns> |
30 | RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl, | 30 | RegionProfileData RequestSimProfileData(ulong regionHandle, Uri gridserverUrl, |
31 | string gridserverSendkey, string gridserverRecvkey); | 31 | string gridserverSendkey, string gridserverRecvkey); |
32 | 32 | ||
33 | /// <summary> | 33 | /// <summary> |
34 | /// Request sim profile information from a grid server, by Region Name | 34 | /// Request sim profile information from a grid server, by Region Name |
35 | /// </summary> | 35 | /// </summary> |
36 | /// <param name="regionName">the region name to look for</param> | 36 | /// <param name="regionName">the region name to look for</param> |
37 | /// <param name="gridserverUrl"></param> | 37 | /// <param name="gridserverUrl"></param> |
38 | /// <param name="gridserverSendkey"></param> | 38 | /// <param name="gridserverSendkey"></param> |
39 | /// <param name="gridserverRecvkey"></param> | 39 | /// <param name="gridserverRecvkey"></param> |
40 | /// <returns>The sim profile. Null if there was a request failure</returns> | 40 | /// <returns>The sim profile. Null if there was a request failure</returns> |
41 | RegionProfileData RequestSimProfileData(string regionName, Uri gridserverUrl, | 41 | RegionProfileData RequestSimProfileData(string regionName, Uri gridserverUrl, |
42 | string gridserverSendkey, string gridserverRecvkey); | 42 | string gridserverSendkey, string gridserverRecvkey); |
43 | } | 43 | } |
44 | } | 44 | } |