| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ProposalDocRelation |
|
| 1.0;1 |
| 1 | package org.kuali.student.r2.core.proposal.infc; | |
| 2 | ||
| 3 | import org.kuali.student.r2.common.infc.Relationship; | |
| 4 | ||
| 5 | /** | |
| 6 | * Information about the proposal to document relation. | |
| 7 | * | |
| 8 | * @author sambit | |
| 9 | * | |
| 10 | */ | |
| 11 | public interface ProposalDocRelation extends Relationship { | |
| 12 | ||
| 13 | /** | |
| 14 | * Unique identifier for a Proposal. | |
| 15 | */ | |
| 16 | public String getProposalId(); | |
| 17 | ||
| 18 | /** | |
| 19 | * Unique identifier for a document. | |
| 20 | */ | |
| 21 | public String getDocumentId(); | |
| 22 | ||
| 23 | /** | |
| 24 | * The title of the document usage in the context of the Proposal. | |
| 25 | */ | |
| 26 | public String getTitle(); | |
| 27 | } |