View Javadoc
1   package org.kuali.coeus.propdev.api.attachment;
2   
3   import org.kuali.coeus.propdev.api.hierarchy.HierarchicalProposal;
4   
5   import java.util.List;
6   
7   public interface NarrativeContract extends HierarchicalProposal {
8   
9        String getProposalNumber();
10  
11       Integer getModuleNumber();
12  
13       String getComments();
14  
15       String getContactName();
16  
17       String getEmailAddress();
18  
19       Integer getModuleSequenceNumber();
20  
21       String getModuleTitle();
22  
23       String getPhoneNumber();
24  
25       NarrativeTypeContract getNarrativeType();
26  
27       NarrativeStatusContract getNarrativeStatus();
28  
29       List<? extends NarrativeUserRightsContract> getNarrativeUserRights();
30  
31       NarrativeAttachmentContract getNarrativeAttachment();
32  }