Skip to content

Commit

Permalink
feat(application): rename AdvancedApplication to ApplicationLink (#2745)
Browse files Browse the repository at this point in the history
  • Loading branch information
vhemery authored Jun 24, 2024
1 parent 9e1d3a8 commit 92f882f
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions modules/ROOT/pages/release-notes.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Release notes
:description: Bonita release note
:description: This is the release notes for Bonita {bonitaVersion} versions

[NOTE]
====
Expand All @@ -12,13 +12,13 @@ Available in all Scale subscription and as a payable add-on in Convert subscript

== New available values

=== Advanced applications
=== Application Links

You can now use advanced applications. See xref:applications:bonita-ui-builder.adoc[Applications with Bonita UI Builder] for more details. Community users can also integrate their own advanced applications developed with other tools.
You can now use application links. See xref:applications:bonita-ui-builder.adoc[Applications with Bonita UI Builder] for more details. Community users can also integrate their own links for applications developed with other tools.

xref:api:engine-api-overview.adoc[Engine APIs] that allowed applications manipulation still work with legacy applications and have been deprecated in favor of new APIs that manipulate both advanced and legacy applications.
xref:api:engine-api-overview.adoc[Engine APIs] that allowed applications manipulation still work with legacy applications and have been deprecated in favor of new APIs that manipulate both application links and legacy applications.

xref:api:rest-api-overview.adoc[REST APIs] (see _Application_ section) now also return advanced applications in addition of legacy applications.
xref:api:rest-api-overview.adoc[REST APIs] (see _Application_ section) now also return application links in addition of legacy applications.

== Bug fixes

Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
The xref:applications:application-creation.adoc[Bonita application descriptor] is a file that let you describe all your applications.

To declare a Bonita UI Builder interface in it, edit it in Studio using the `source` tab.
In this tab, you will be able to declare your application built and packaged with Bonita UI Builder, using auto-completion with a `advancedApplication` XML tag.
In this tab, you will be able to declare your application built and packaged with Bonita UI Builder, using auto-completion with an `applicationLink` XML tag.

image::images/advanced-app/advanced-application-descriptor.png[Application Descriptor Editor]
image::images/app-link/application-link-descriptor.png[Application Descriptor Editor]

In this example, the _Advanced Overview_ application is declared with the tag:
In this example, the _General Overview_ application is declared with the tag:

[source,xml]
----
<advancedApplication token="advanced" version="1.0" profile="User" state="ACTIVATED">
<displayName>Advanced Overview</displayName>
</advancedApplication>
<applicationLink token="appLink" version="1.0" profile="User" state="ACTIVATED">
<displayName>General Overview</displayName>
</applicationLink>
----

There are fewer properties to set for an advanced application than for a legacy application, but the `displayName` is still mandatory.
There are fewer properties to set for an application link than for a legacy application, but the `displayName` is still mandatory.

[NOTE]
====
Expand Down

0 comments on commit 92f882f

Please sign in to comment.