1 package org.kuali.coeus.propdev.api.s2s;
2
3
4 public interface S2sOpportunityService {
5
6 /**
7 * This method retrieves and S2S Opportunity by proposal number. The proposal number cannot be blank.
8 * Will return null if non is found.
9 *
10 * @param proposalNumber the proposal number. Cannot be blank.
11 * @return the S2sOpportunity or null.
12 * @throws java.lang.IllegalArgumentException if proposal number is blank
13 */
14 S2sOpportunityContract findS2SOpportunityByProposalNumber(String proposalNumber);
15 }