public interface PaymentSearch extends OsidSearch
The search interface for governing payment searches.
Modifier and Type | Method and Description |
---|---|
PaymentSearchRecord |
getPaymentSearchRecord(Type paymentSearchRecordType)
Gets the payment search record corresponding to the given payment
search record
Type. |
void |
orderPaymentResults(PaymentSearchOrder paymentSearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongPayments(IdList paymentIds)
Execute this search among the given list of payments.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongPayments(IdList paymentIds)
paymentIds
- list of payersNullArgumentException
- paymentIds
is
null
mandatory
- This method must be implemented. void orderPaymentResults(PaymentSearchOrder paymentSearchOrder)
paymentSearchOrder
- payer search orderNullArgumentException
- paymentSearchOrder
is null
UnsupportedException
- paymentSearchOrder
is not of this servicemandatory
- This method must be implemented. PaymentSearchRecord getPaymentSearchRecord(Type paymentSearchRecordType) throws OperationFailedException
Type.
This method is used to retrieve an
object implementing the requested record.paymentSearchRecordType
- a payer search record typeNullArgumentException
- paymentSearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(paymentSearchRecordType)
is false
mandatory
- This method must be implemented.