aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/RestPlugin.cs')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/RestPlugin.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs
index ffabb2a..e4bd544 100644
--- a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs
+++ b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs
@@ -60,7 +60,7 @@ namespace OpenSim.ApplicationPlugins.Rest
60 60
61 private IConfig _config; // Configuration source: Rest Plugins 61 private IConfig _config; // Configuration source: Rest Plugins
62 private IConfig _pluginConfig; // Configuration source: Plugin specific 62 private IConfig _pluginConfig; // Configuration source: Plugin specific
63 private OpenSimMain _app; // The 'server' 63 private OpenSimBase _app; // The 'server'
64 private BaseHttpServer _httpd; // The server's RPC interface 64 private BaseHttpServer _httpd; // The server's RPC interface
65 private string _prefix; // URL prefix below 65 private string _prefix; // URL prefix below
66 // which all REST URLs 66 // which all REST URLs
@@ -114,7 +114,7 @@ namespace OpenSim.ApplicationPlugins.Rest
114 /// <summary> 114 /// <summary>
115 /// OpenSimMain application 115 /// OpenSimMain application
116 /// </summary> 116 /// </summary>
117 public OpenSimMain App 117 public OpenSimBase App
118 { 118 {
119 get { return _app; } 119 get { return _app; }
120 } 120 }
@@ -196,7 +196,7 @@ namespace OpenSim.ApplicationPlugins.Rest
196 /// Note that entries MUST be added to the active configuration files before 196 /// Note that entries MUST be added to the active configuration files before
197 /// the plugin can be enabled. 197 /// the plugin can be enabled.
198 /// </remarks> 198 /// </remarks>
199 public virtual void Initialise(OpenSimMain openSim) 199 public virtual void Initialise(OpenSimBase openSim)
200 { 200 {
201 RequestID = "0"; 201 RequestID = "0";
202 MsgID = RequestID; 202 MsgID = RequestID;