diff options
author | Melanie Thielker | 2010-04-24 16:45:25 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-04-24 16:45:25 +0200 |
commit | 71f42f185a48ef96391b39fa0197c1a8b793e969 (patch) | |
tree | ddd8def5eed77423b4541201f06aa2b4be4b6eaa /OpenSim/Services/Interfaces | |
parent | Add an additional serialization call do the detach procedure. This call is (diff) | |
download | opensim-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.cs | 31 |
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 | // | ||
7 | using System; | ||
8 | using System.Diagnostics; | ||
9 | using System.Collections.Generic; | ||
10 | using System.IO; | ||
11 | using System.Text; | ||
12 | using System.Threading; | ||
13 | using System.Reflection; | ||
14 | using OpenSim.Framework; | ||
15 | using OpenSim.Framework.Console; | ||
16 | using OpenSim.Server.Base; | ||
17 | using OpenSim.Services.Base; | ||
18 | using OpenSim.Services.Interfaces; | ||
19 | using Nini.Config; | ||
20 | using log4net; | ||
21 | using Careminster; | ||
22 | using OpenMetaverse; | ||
23 | |||
24 | namespace Careminster | ||
25 | { | ||
26 | public interface IAttachmentsService | ||
27 | { | ||
28 | string Get(string id); | ||
29 | void Store(string id, string data); | ||
30 | } | ||
31 | } | ||