Interface GreenHopperLicenseManager
- All Superinterfaces:
com.atlassian.jira.plugin.license.PluginLicenseManager
- All Known Implementing Classes:
GreenHopperLicenseManagerImpl
public interface GreenHopperLicenseManager
extends com.atlassian.jira.plugin.license.PluginLicenseManager
Deprecated.
since 7.1.0
This interface unfortunately forms part of Jira Agile's API to other plugins. It is exposed by a public component in
our
atlassian-plugin.xml
. Therefore it can't easily be moved to another package or removed. We will need
to deprecate this and then remove it after a time.-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.this method should not form part of Jira Agile's API so it is being deprecated.Deprecated.please useJiraLicenseService.getServerId()
directly.boolean
isValid()
Deprecated.from 7.0.0 onwards, Jira Agile no longer maintains its own notion of a license.void
verify()
Deprecated.from 7.0.0 onwards, Jira Agile no longer maintains its own notion of a license.Methods inherited from interface com.atlassian.jira.plugin.license.PluginLicenseManager
setLicense
-
Method Details
-
verify
void verify() throws com.atlassian.extras.common.LicenseExceptionDeprecated.from 7.0.0 onwards, Jira Agile no longer maintains its own notion of a license. Please callcom.atlassian.jira.application.ApplicationAuthorizationService#hasNoLicensingAccessErrors(ApplicationKey.valueOf("jira-software"))
instead.Checks if the current Jira Agile (Jira Software) license is valid.- Throws:
com.atlassian.extras.common.LicenseException
-
isValid
boolean isValid()Deprecated.from 7.0.0 onwards, Jira Agile no longer maintains its own notion of a license. Please callcom.atlassian.jira.application.ApplicationAuthorizationService#hasNoLicensingAccessErrors(ApplicationKey.valueOf("jira-software"))
instead.- Returns:
- is the current Jira Agile (Jira Software) license valid
-
getServerId
String getServerId()Deprecated.please useJiraLicenseService.getServerId()
directly.- Returns:
- the Server ID of this Jira instance
-
getLicenseRedirectUrl
String getLicenseRedirectUrl()Deprecated.this method should not form part of Jira Agile's API so it is being deprecated. SeeLicenseService.getLicenseAdminUrl(LicenseMode)
- Returns:
- the URL to redirect administrators to when a license needs further inspection.
-