mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
LLM-2956: license: Add JBAccountInfoService.issueTrialLicense()
GitOrigin-RevId: 112ccda56ea29d5d92441a07067fe58df73b2567
This commit is contained in:
committed by
intellij-monorepo-bot
parent
dcdd61f6a0
commit
3f9aae4213
@@ -51,6 +51,9 @@ public interface JBAccountInfoService {
|
||||
@SuppressWarnings("unused")
|
||||
@NotNull CompletableFuture<@NotNull LicenseListResult> getAvailableLicenses(@NotNull String productCode);
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
@NotNull CompletableFuture<@NotNull LicenseListResult> issueTrialLicense(@NotNull String productCode, @NotNull List<String> consentOptions);
|
||||
|
||||
static @Nullable JBAccountInfoService getInstance() {
|
||||
return JBAccountInfoServiceHolder.INSTANCE;
|
||||
}
|
||||
|
||||
@@ -24,9 +24,12 @@ object DummyJBAccountInfoService : JBAccountInfoService {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun getAvailableLicenses(
|
||||
productCode: String,
|
||||
): CompletableFuture<JBAccountInfoService.LicenseListResult> {
|
||||
override fun getAvailableLicenses(productCode: String): CompletableFuture<JBAccountInfoService.LicenseListResult> {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
override fun issueTrialLicense(productCode: String,
|
||||
consentOptions: List<String>): CompletableFuture<JBAccountInfoService.LicenseListResult> {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user