Package org.kuali.coeus.propdev.api.s2s
Interface UserAttachedFormService
public interface UserAttachedFormService
-
Method Summary
Modifier and TypeMethodDescriptionfindFormByProposalNumberAndNamespace(String proposalNumber, String namespace) This method find a S2S User Attached Form by a proposal number and namespace.
-
Method Details
-
findFormByProposalNumberAndNamespace
S2sUserAttachedFormContract findFormByProposalNumberAndNamespace(String proposalNumber, String namespace) This method find a S2S User Attached Form by a proposal number and namespace. There is supposed to be only one form with the same proposal number and namespace combination. If more that one is found the first one is returned. If no matching forms are found null is returned.- Parameters:
proposalNumber- the proposal number. Cannot be blanknamespace- the namespace. Cannot be blank.- Returns:
- a S2S User Attached Form or null.
- Throws:
IllegalArgumentException- if either proposalNumber or namespace is blank.
-