Table of Contents

Search

  1. Introduction
  2. Samples and Examples
  3. Tools and Utilities
  4. SDK Resources

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!