aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Servers/IRestHandler.cs
diff options
context:
space:
mode:
authorlbsa712007-03-29 19:05:34 +0000
committerlbsa712007-03-29 19:05:34 +0000
commit514a3230563e19708588945f90e81760377f1265 (patch)
tree89c2b0c9d05b10b4a470bc9834cc7f4aef89047a /Servers/IRestHandler.cs
parent* Tried to make the sandbox/useraccount sim setup a bit simpler (diff)
downloadopensim-SC_OLD-514a3230563e19708588945f90e81760377f1265.zip
opensim-SC_OLD-514a3230563e19708588945f90e81760377f1265.tar.gz
opensim-SC_OLD-514a3230563e19708588945f90e81760377f1265.tar.bz2
opensim-SC_OLD-514a3230563e19708588945f90e81760377f1265.tar.xz
* RestMethod now uses same pattern as XmlRpcMethod
* Made /Admin use RestMethod * HttpServer is now a mini-webapp-server yay!
Diffstat (limited to 'Servers/IRestHandler.cs')
-rw-r--r--Servers/IRestHandler.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/Servers/IRestHandler.cs b/Servers/IRestHandler.cs
index f269600..deb77d8 100644
--- a/Servers/IRestHandler.cs
+++ b/Servers/IRestHandler.cs
@@ -4,8 +4,5 @@ using System.Text;
4 4
5namespace OpenSim.CAPS 5namespace OpenSim.CAPS
6{ 6{
7 public interface IRestHandler 7 public delegate string RestMethod( string request );
8 {
9 string HandleREST(string requestBody, string requestURL, string requestMethod);
10 }
11} 8}