Oracle Fusion Middleware extensions for Applications Core API Reference
11g Release 1 (11.1.2)

E22562-02

oracle.apps.fnd.applcore.search
Interface ApplcoreKeySplitter

All Known Implementing Classes:
BaseKeySplitter, DefaultKeySplitter

public interface ApplcoreKeySplitter

An interface defineing the contract for a class which will split keys passed to it into their composite parts. All implementations MUST extend the class BaseKeySplitter instead of implementing this interface directly to protect them against future API changes.

Author:
David Groves <david.groves@oracle.com>
See Also:
BaseKeySplitter

Method Summary
 void setPKColNames(java.util.List<java.lang.String> pkColNames)
          Set the primary key column names.
 java.util.List<java.lang.String> splitKeys(java.lang.String key)
          Split the key arguement into it's separate pieces and return them via the list.
 

Method Detail

splitKeys

java.util.List<java.lang.String> splitKeys(java.lang.String key)
Split the key arguement into it's separate pieces and return them via the list.

Parameters:
key -
Returns:

setPKColNames

void setPKColNames(java.util.List<java.lang.String> pkColNames)
Set the primary key column names. This method will be called on the class after construction.

Parameters:
pkColNames - and ordered list of the primary key column names as strings.

Oracle Fusion Middleware extensions for Applications Core API Reference
11g Release 1 (11.1.2)

E22562-02

Copyright © 2011 Oracle. All Rights Reserved.