]> git.argeo.org Git - gpl/argeo-slc.git/blob - attachment/AttachmentsStorage.java
Prepare next development cycle
[gpl/argeo-slc.git] / attachment / AttachmentsStorage.java
1 package org.argeo.slc.attachment;
2
3 import java.io.InputStream;
4 import java.io.OutputStream;
5
6 public interface AttachmentsStorage {
7 public void retrieveAttachment(Attachment attachment,
8 OutputStream outputStream);
9
10 /** Does NOT close the provided input stream. */
11 public void storeAttachment(Attachment attachment, InputStream inputStream);
12 }