com.atlassian.jira.license
Interface MultiLicenseStore

All Known Implementing Classes:
MultiLicenseStoreImpl

public interface MultiLicenseStore

A store to save multiple licenses to a persistent location. This class replaces JiraLicenseStore.

Since:
v6.3

Method Summary
 void confirmProceedUnderEvaluationTerms(String userName)
          This will confirm that user has agreed to proceed under Evaluation terms, typically when the license is too old for the current JIRA build.
 void resetOldBuildConfirmation()
          Resets persisted information about license in use being too old for current build.
 Iterable<String> retrieve()
          Retrieves all product license strings.
 String retrieveServerId()
          Gets the server ID from the persistence backend
 void store(Iterable<String> licenseString)
          Persists a new state for all licenses.
 void storeServerId(String serverId)
          Stores the server ID to the persistent backend
 

Method Detail

retrieve

@Nonnull
Iterable<String> retrieve()
Retrieves all product license strings. The returned Iterable is immutable and is ordered by the ID in the database. The returned Iterable is not null and does not contain null elements. The absence of a license is indicated by an empty list.

Returns:
all current license strings from persistence

store

void store(@Nonnull
           Iterable<String> licenseString)
Persists a new state for all licenses. This will overwrite all licenses currently stored.

This method will do some cursory checking of inputs but will still store most invalid licenses if requested. The caller should test licenses strings for validity before attempting to store them. This method may throw an unspecified runtime exception if the argument is invalid, for example if it is null, empty, or contains a null element.

Until the license roles dark feature is enabled, MultiLicenseStores may operate in legacy mode. In legacy mode a single license is arbitrarily chosen and stored in the backing legacy license store, typically as an ApplicationProperties property. It is the caller's responsibility to ensure that no more than one license is attempted to be stored when in legacy mode.

Parameters:
licenseString - the license strings to store

retrieveServerId

String retrieveServerId()
Gets the server ID from the persistence backend

Returns:
the server ID, null if not found

storeServerId

void storeServerId(String serverId)
Stores the server ID to the persistent backend

Parameters:
serverId - the server ID to store

resetOldBuildConfirmation

void resetOldBuildConfirmation()
Resets persisted information about license in use being too old for current build.

Since:
7.0

confirmProceedUnderEvaluationTerms

void confirmProceedUnderEvaluationTerms(String userName)
This will confirm that user has agreed to proceed under Evaluation terms, typically when the license is too old for the current JIRA build.

Parameters:
userName - the name of the user that amde the confirmation
Since:
7.0


Copyright © 2002-2014 Atlassian. All Rights Reserved.