The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 

How to determine plugin is in Free Trial through PluginLicenseManager

Ivana Navratilova
Contributor
January 2, 2018

I have a plugin with licensing, which works fine with the timebomb licences. But when I do a fresh install on my developer instance, I get the "Free Trial" licence - by my thinking, in free trial everything should work just like in the paid version.

But here comes my problem, how do I actually determine that the plugin is in the free trial? I use this function to determine if the plugin is licensed:

private Boolean isLicenceOK() {
if (pluginLicenseManager.getLicense().isDefined()) {
PluginLicense pluginLicense = pluginLicenseManager.getLicense().get();
return !pluginLicense.getError().isDefined();
} else {
return false;
}
}

Which works fine when I have/dont have a license. But when the plugin is in the free trial, it just says there is no license.

So is there a way to find out if the plugin is currently in the free trial?

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 3, 2018

Hi Ivana,

You should be able to see this information in the Manage Add-Ons page:

Screen Shot 2018-01-03 at 9.44.36 AM.png

 

See the License Details section:

License details:

Evaluation, Unlimited-user commercial license, Standard, expires 02/Feb/18

You can also tell from the description paragraph this is a trial:

Your trial is expiring on 02/Feb/18.  Buy a license for this add-on.

Cheers,

Branden