]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/AttachmentsStorage.java
First working GPS position provider
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / attachment / AttachmentsStorage.java
1 package org.argeo.slc.core.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 }