SCIM Connector Package Installation
Author:
Fluent Commerce
Changed on:
9 Oct 2023
Key Points
- The SCIM connector is a Java based project that enables seamless integration with the SCIM. In order to install the SCIM Connector, you’d need to make sure you have the right dockers and tools. Next step is setting up the local environment, configuring the connector, and finally deploying the connector.
- The SCIM connector and connect SDK versions need to be aligned.
Steps
Product Structure
A Fluent Connector project typically has the structure as defined below. Any customizations / extensions can be done under the custom folder or as a separate module (jar).
Regardless of which way chosen to extend it, the key message here is that any custom code should be under the `com.fluentcommerce.connect` package. This is because the FluentConnectorApplication is wired to work with Spring, and in its current form, Spring will only scan for components under `com.fluentcommerce.connect`.This project relies on three key dependencies and configurations to drive the application's behavior.All configuration files are located at `src/main/resources`- a topic is further down the article dedicated to this.