com.symphony.bdk.extension.BdkExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-bdk-extension-api Show documentation
Show all versions of symphony-bdk-extension-api Show documentation
Symphony Java BDK Core - Extension API
package com.symphony.bdk.extension;
import org.apiguardian.api.API;
/**
* Marker interface for all BDK extensions.
*
* An extension can be manually registered using {@code bdk.extensions().register(Class>? extends BdkExtension<)} method.
*
*
An extension must have a default constructor in order to be automatically instantiated by the BDK {@code ExtensionService}.
*/
@API(status = API.Status.EXPERIMENTAL)
public interface BdkExtension {
}