Every connector begins execution by creating an instance of this class and calling its
start() method. This starts processing, triggering the SDK to begin making connector
calls as configured in the configuration file.
Sample usage:
public static void main(String[] args) throws IOException, InterruptedException {
IdentityApplication application = new IdentityApplication.Builder(
new MyIdentityConnector(new MyIdentityRepository()), args).build();
application.start();
}
Optional configuration parameter(s):
schedule.incrementalTraversalIntervalSecs - Specifies the interval between
scheduled incremental traversals (in seconds).
schedule.performTraversalOnStart - Specifies whether to run the traversal
immediately at start up rather than waiting for the first interval to expire.
schedule.traversalIntervalSecs - Specifies the interval between scheduled
traversals (in seconds).
connector.runOnce - Specifies whether the connector should exit after a single
traversal.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-03 UTC."],[[["`IdentityApplication` is the main entry point for the Cloud Search Identity Connector SDK and initiates connector execution."],["Developers use the `Builder` pattern to create an `IdentityApplication` instance and call its `start()` method to begin processing."],["Configuration options allow for customization such as setting traversal intervals and running the connector once."],["`IdentityApplication` inherits methods for managing the connector's lifecycle, including starting, stopping, and handling shutdowns."],["Several optional parameters can be configured to control connector behavior, including traversal intervals and one-time execution."]]],[]]