1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kns.document;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.apache.struts.upload.FormFile;
20 import org.kuali.rice.kns.maintenance.Maintainable;
21 import org.kuali.rice.krad.bo.DocumentAttachment;
22 import org.kuali.rice.krad.bo.PersistableBusinessObject;
23
24 import javax.persistence.Transient;
25 import java.io.FileNotFoundException;
26 import java.io.IOException;
27
28
29
30
31 public class MaintenanceDocumentBase extends org.kuali.rice.krad.maintenance.MaintenanceDocumentBase implements MaintenanceDocument {
32 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(MaintenanceDocumentBase.class);
33
34 @Transient
35 protected transient FormFile fileAttachment;
36
37 public MaintenanceDocumentBase() {
38 super();
39 }
40
41 public MaintenanceDocumentBase(String documentTypeName) {
42 super(documentTypeName);
43 }
44
45
46
47
48 @Override
49 public PersistableBusinessObject getDocumentBusinessObject() {
50 return (PersistableBusinessObject) super.getDocumentDataObject();
51 }
52
53
54
55
56 public boolean isOldBusinessObjectInDocument() {
57 boolean isOldBusinessObjectInExistence = false;
58 if (getOldMaintainableObject() == null || getOldMaintainableObject().getBusinessObject() == null) {
59 isOldBusinessObjectInExistence = false;
60 } else {
61 isOldBusinessObjectInExistence = getOldMaintainableObject().isOldBusinessObjectInDocument();
62 }
63 return isOldBusinessObjectInExistence;
64 }
65
66 public Maintainable getNewMaintainableObject() {
67 return (Maintainable) newMaintainableObject;
68 }
69
70 public Maintainable getOldMaintainableObject() {
71 return (Maintainable) oldMaintainableObject;
72 }
73
74 public FormFile getFileAttachment() {
75 return this.fileAttachment;
76 }
77
78 public void setFileAttachment(FormFile fileAttachment) {
79 this.fileAttachment = fileAttachment;
80 }
81
82 public void populateDocumentAttachment() {
83 refreshAttachment();
84
85 if (fileAttachment != null && StringUtils.isNotEmpty(fileAttachment.getFileName())) {
86
87 if (attachment == null) {
88 attachment = new DocumentAttachment();
89 }
90
91 byte[] fileContents;
92 try {
93 fileContents = fileAttachment.getFileData();
94 if (fileContents.length > 0) {
95 attachment.setFileName(fileAttachment.getFileName());
96 attachment.setContentType(fileAttachment.getContentType());
97 attachment.setAttachmentContent(fileAttachment.getFileData());
98 attachment.setDocumentNumber(getDocumentNumber());
99 }
100 } catch (FileNotFoundException e) {
101 LOG.error("Error while populating the Document Attachment", e);
102 throw new RuntimeException("Could not populate DocumentAttachment object", e);
103 } catch (IOException e) {
104 LOG.error("Error while populating the Document Attachment", e);
105 throw new RuntimeException("Could not populate DocumentAttachment object", e);
106 }
107 }
108
109
110
111
112 }
113 }