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

net.customware.license.atlassian.DefaultLicenseContext Maven / Gradle / Ivy

The newest version!
package net.customware.license.atlassian;

import com.atlassian.license.License;
import com.atlassian.license.LicenseManager;

public class DefaultLicenseContext implements LicenseContext {
    private String applicationRegistryKey;

    public DefaultLicenseContext( String applicationRegistryKey ) {
        this.applicationRegistryKey = applicationRegistryKey;
    }

    public License getLicense() {
        return LicenseManager.getInstance().getLicense( applicationRegistryKey );
    }

    public String getApplicationRegistryKey() {
        return applicationRegistryKey;
    }

    public void setApplicationRegistryKey( String applicationRegistryKey ) {
        this.applicationRegistryKey = applicationRegistryKey;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy