Class | Line # | Actions | |||||
---|---|---|---|---|---|---|---|
AttachmentContentStreamProvider | 37 | 3 | 0% | 2 | 0 |
1 | /* | |
2 | * See the NOTICE file distributed with this work for additional | |
3 | * information regarding copyright ownership. | |
4 | * | |
5 | * This is free software; you can redistribute it and/or modify it | |
6 | * under the terms of the GNU Lesser General Public License as | |
7 | * published by the Free Software Foundation; either version 2.1 of | |
8 | * the License, or (at your option) any later version. | |
9 | * | |
10 | * This software is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
16 | * License along with this software; if not, write to the Free | |
17 | * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | |
18 | * 02110-1301 USA, or see the FSF site: http://www.fsf.org. | |
19 | */ | |
20 | package org.xwiki.store.legacy.store.internal; | |
21 | ||
22 | import java.io.InputStream; | |
23 | ||
24 | import org.xwiki.store.StreamProvider; | |
25 | ||
26 | import com.xpn.xwiki.XWikiContext; | |
27 | import com.xpn.xwiki.XWikiException; | |
28 | import com.xpn.xwiki.doc.XWikiAttachment; | |
29 | ||
30 | /** | |
31 | * A stream provider based on the content of an attachment. | |
32 | * Used to save the content of each attachment to the correct file. | |
33 | * | |
34 | * @version $Id: 8c6b7b96128fb3f4ceccd2d6f175c8eb4991bdc2 $ | |
35 | * @since 3.0M2 | |
36 | */ | |
37 | public class AttachmentContentStreamProvider implements StreamProvider | |
38 | { | |
39 | /** | |
40 | * The attachment to save content of. | |
41 | */ | |
42 | private final XWikiAttachment attachment; | |
43 | ||
44 | /** | |
45 | * The XWikiContext for getting the content of the attachment. | |
46 | */ | |
47 | private final XWikiContext context; | |
48 | ||
49 | /** | |
50 | * The Constructor. | |
51 | * | |
52 | * @param attachment the attachment whose content should become the stream. | |
53 | * @param context the XWikiContext needed to get the content from the attachment | |
54 | * using {@link XWikiAttachment#getContentInputStream(XWikiContext)} | |
55 | */ | |
56 | 13 | ![]() |
57 | final XWikiContext context) | |
58 | { | |
59 | 13 | this.attachment = attachment; |
60 | 13 | this.context = context; |
61 | } | |
62 | ||
63 | 13 | ![]() |
64 | public InputStream getStream() throws XWikiException | |
65 | { | |
66 | 13 | return this.attachment.getContentInputStream(this.context); |
67 | } | |
68 | } |