From: Mathieu Baudier Date: Wed, 29 Jul 2009 14:29:31 +0000 (+0000) Subject: Fix issue with RealizedFlow XML too big X-Git-Tag: argeo-slc-2.1.7~1584 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=b21a43af1dbdae169d09147f8ee646537dfd1a4c;p=gpl%2Fargeo-slc.git Fix issue with RealizedFlow XML too big git-svn-id: https://svn.argeo.org/slc/trunk@2830 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/FileAttachmentsStorage.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/FileAttachmentsStorage.java index ed6cf485f..51080c63f 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/FileAttachmentsStorage.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/FileAttachmentsStorage.java @@ -132,4 +132,21 @@ public class FileAttachmentsStorage implements AttachmentsStorage, + attachment.getUuid()); return file; } + + public void setAttachmentsDirectory(File attachmentsDirectory) { + this.attachmentsDirectory = attachmentsDirectory; + } + + public void setAttachmentsTocFileName(String attachmentsTocFileName) { + this.attachmentsTocFileName = attachmentsTocFileName; + } + + public void setDateFormatDay(DateFormat dateFormatDay) { + this.dateFormatDay = dateFormatDay; + } + + public void setDateFormatTime(DateFormat dateFormatTime) { + this.dateFormatTime = dateFormatTime; + } + }