thron-com / thron-sdk-java   6.5.2

Website GitHub

Java/Scala API for THRON Platform

Scala versions: 2.11

SDK THRON Platform Maven Central Build Status

This open-source Java/Scala library allows you to integrate your project with THRON platform using the available REST Api defined in https://developer.thron.com/

Learn more about the provided samples, documentation, integrating the SDK into your project, and more at https://support.thron.com

Getting Started

Master release

Master releases are published in http://mvnrepository.com

Snapshot

For version under development you need to add nexus snapshot repository: https://oss.sonatype.org/content/repositories/snapshots

Maven

<repositories>
    <repository>
        <id>snapshot</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
</repositories>

Sbt

With Sbt add always the jersey-bundle dependency

resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies ++= Seq(
    "com.sun.jersey"    % "jersey-bundle"                 % "1.10",
    "com.thron.sdk"     % "thron-core-xcontents_2.11"    % "6.5.2"
)

Overview

The library is composed by different modules that can be added independently to your project.

This is the Single Sign-On component of the entire platform. It provides a set of interfaces for web services authentication and methods for user-defined configuration properties retrieving.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xsso_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xsso_2.11"    % "6.5.2")

This component manages the content-related information: content metadata, comments, tags, content proprieties, ratings, visualizations and relations with other contents. It provides a set of web services to manage contents within folders, to moderate comments added by other users or to update content's description in different languages.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xcontents_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xcontents_2.11"    % "6.5.2")

This component manages the content publication process, thanks to its interaction with xpackager and xcontents. Moreover, it provides a set of services for user roles and playlist management.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xadmin_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xadmin_2.11"    % "6.5.2")

This component manages the content intelligence tools, allowing the user to define new classifications and tags and to link them to the entities.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xintelligence_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xintelligence_2.11"    % "6.5.2")

This is the component for managing user's working area (i.e., the area where contents are stored before publication) and content's packaging and transcoding process. Moreover, this component provides a set of services to manage contents preview before their publication over CDN.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xpackager_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xpackager_2.11"    % "6.5.2")

Xcontact allows you to handle the contacts received by the platform entities (users and contents), and allows you to connect the user to a contact and retrieve its deviceId. Xdevice allows you to connect the user to a contact and retrieve its deviceId.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xcontact_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xcontact_2.11"    % "6.5.2")

This component allows you to easily check the connection to the platform and the integration best practices.

Maven
<dependencies>
    <dependency>
        <groupId>com.thron.sdk</groupId>
        <artifactId>thron-core-xtest_2.11</artifactId>
        <version>6.5.2</version>
    </dependency>
</dependencies>
Sbt
libraryDependencies ++= Seq("com.thron.sdk"     % "thron-core-xtest_2.11"    % "6.5.2")