]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/AttachmentsStorage.java
Fix issue with RealizedFlow XML too big
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / attachment / AttachmentsStorage.java
index dfb75604ec62e93c1c4760bddceebc292f38e6df..7a5e8cdc37722aa84f31123edb69d0248b671518 100644 (file)
@@ -3,10 +3,10 @@ package org.argeo.slc.core.attachment;
 import java.io.InputStream;
 import java.io.OutputStream;
 
-
 public interface AttachmentsStorage {
        public void retrieveAttachment(Attachment attachment,
                        OutputStream outputStream);
 
+       /** Does NOT close the provided input stream. */
        public void storeAttachment(Attachment attachment, InputStream inputStream);
 }