Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There are two versions of Client SDK for Java - core and extension. Core covers REST API requests for users, profile, groups, namespases and data storages, and also allows user to send e-mail and SMS messages. The rest of the APIs are covered in extension versionclient.

To start using core version add:

Code Block
languagexml
<dependency>
	<groupId>com.trivore</groupId>
	<artifactId>trivoreid-sdk</artifactId>
	<version>2.0.0</version>
</dependency>

For an extension version client use:

Code Block
languagexml
<dependency>
	<groupId>com.trivore</groupId>
	<artifactId>trivoreid-sdk-extension</artifactId>
	<version>1.0.0</version>
</dependency>

...