Table of Contents

Search

  1. Preface
  2. Introduction to Services Integration Framework
  3. Setting Up the SIF SDK
  4. Request and Response Objects
  5. Transactions and Exception Handling
  6. ORS-Specific SIF API
  7. Asynchronous SIF Requests
  8. ORS-Specific JMS Event Messages
  9. Using Security Access Manager
  10. Using Dynamic Data Masking
  11. SIF API Reference
  12. Troubleshooting
  13. Appendix A: Identifiers
  14. Appendix B: Frequently Asked Questions

Services Integration Framework Guide

Services Integration Framework Guide

Request Objects

Request Objects

A request object includes methods that indicate the action that you want to perform on the MDM Hub. A SIF class that represents a request object is a subclass of the
SiperianRequest
class and extends the
SiperianRequest
class.
For example, the following sample uses the
SearchQueryRequest
object:
SearchQueryRequest request = new SearchQueryRequest(); request.setRecordsToReturn(5); //Required request.setSiperianObjectUID("PACKAGE.PARTY_ADDRESS_READ_PKG");//Required request.setFilterCriteria("PARTY_FULL_NAME LIKE ?");
The request runs the
PARTY_ADDRESS_READ_PKG
package, uses the
PARTY_FULL_NAME LIKE
filter criteria, and returns no more than five records.

0 COMMENTS

We’d like to hear from you!