com.atlassian.jira.plugin.studio
Interface StudioHooks

All Known Implementing Classes:
MockStudioHooks, PluginStudioHooks

public interface StudioHooks

Provides an series of callbacks that studio needs to be able to integrate with JIRA. All of these methods will need to be thread safe. These method can be called by multiple threads at the same time. The same method can be called by my multiple threads at the same time. All of these methods will need to be performant. JIRA will not do any caching of the results and will probably call a method with the same arguments multiple times (possibly at the same time).

Since:
v4.4.2

Method Summary
 StudioLicenseHooks getLicenseHooks()
          Called by JIRA to get an instance of StudioLicenseHooks that it will callback when making some licensing decisions.
 

Method Detail

getLicenseHooks

@Nonnull
StudioLicenseHooks getLicenseHooks()
Called by JIRA to get an instance of StudioLicenseHooks that it will callback when making some licensing decisions. See StudioLicenseHooks for more details.

Returns:
an instance of StudioLicenseHooks that JIRA will use to make some licensing decisions.


Copyright © 2002-2014 Atlassian. All Rights Reserved.