View Javadoc
1   package org.kuali.coeus.s2sgen.api.generate;
2   
3   import java.util.List;
4   
5   /**
6    * This class holds the result of executing form generation on a proposal document.
7    */
8   public class FormGenerationResult extends FormValidationResult {
9   
10      private String applicationXml;
11      private List<AttachmentData> attachments;
12  
13      public String getApplicationXml() {
14          return applicationXml;
15      }
16  
17      public void setApplicationXml(String applicationXml) {
18          this.applicationXml = applicationXml;
19      }
20  
21      public List<AttachmentData> getAttachments() {
22          return attachments;
23      }
24  
25      public void setAttachments(List<AttachmentData> attachments) {
26          this.attachments = attachments;
27      }
28  }