]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/attachment/FileAttachmentsStorage.java
Improve logging
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / attachment / FileAttachmentsStorage.java
index ed6cf485f2db05075990dccbe7091a2f2932f079..51080c63fa35aaed79850f09158e60c044e2ebc0 100644 (file)
@@ -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;
+       }
+
 }