All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.symphony.bdk.extension.BdkExtensionServiceProvider Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package com.symphony.bdk.extension;

import org.apiguardian.api.API;

/**
 * {@code BdkExtensionServiceProvider} defines the API of {@link BdkExtension} that wish to provide additional services
 * to BDK developers.
 *
 * 

Extensions that implement {@code BdkExtensionServiceProvider} must also implement {@link BdkExtension}. * * @param Type of the service. * @see BdkExtension */ @API(status = API.Status.EXPERIMENTAL) public interface BdkExtensionServiceProvider { /** * Returns the extension service instance. * * @return extension service instance. */ S getService(); }