aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2010-04-24 16:45:25 +0200
committerMelanie Thielker2010-04-24 16:45:25 +0200
commit71f42f185a48ef96391b39fa0197c1a8b793e969 (patch)
treeddd8def5eed77423b4541201f06aa2b4be4b6eaa /OpenSim/Services/Interfaces
parentAdd an additional serialization call do the detach procedure. This call is (diff)
downloadopensim-SC_OLD-71f42f185a48ef96391b39fa0197c1a8b793e969.zip
opensim-SC_OLD-71f42f185a48ef96391b39fa0197c1a8b793e969.tar.gz
opensim-SC_OLD-71f42f185a48ef96391b39fa0197c1a8b793e969.tar.bz2
opensim-SC_OLD-71f42f185a48ef96391b39fa0197c1a8b793e969.tar.xz
Plumb a data path to initialize an attachment from an alternate source
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IAttachmentsService.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IAttachmentsService.cs b/OpenSim/Services/Interfaces/IAttachmentsService.cs
new file mode 100644
index 0000000..3b9f2f2
--- /dev/null
+++ b/OpenSim/Services/Interfaces/IAttachmentsService.cs
@@ -0,0 +1,31 @@
1////////////////////////////////////////////////////////////////
2//
3// (c) 2009, 2010 Careminster Limited and Melanie Thielker
4//
5// All rights reserved
6//
7using System;
8using System.Diagnostics;
9using System.Collections.Generic;
10using System.IO;
11using System.Text;
12using System.Threading;
13using System.Reflection;
14using OpenSim.Framework;
15using OpenSim.Framework.Console;
16using OpenSim.Server.Base;
17using OpenSim.Services.Base;
18using OpenSim.Services.Interfaces;
19using Nini.Config;
20using log4net;
21using Careminster;
22using OpenMetaverse;
23
24namespace Careminster
25{
26 public interface IAttachmentsService
27 {
28 string Get(string id);
29 void Store(string id, string data);
30 }
31}