-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix:Restart application registry service to update the category lisy …
…from the XML configuration - EXO-68920
- Loading branch information
Showing
3 changed files
with
124 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
...egistry/src/test/resources/conf/portal/application-registry-initializer-configuration.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<!-- | ||
Copyright (C) 2024 eXo Platform SAS. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
<configuration | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd http://www.exoplatform.org/xml/ns/kernel_1_2.xsd" | ||
xmlns="http://www.exoplatform.org/xml/ns/kernel_1_2.xsd"> | ||
|
||
<external-component-plugins> | ||
<target-component>org.exoplatform.application.registry.ApplicationRegistryService</target-component> | ||
<component-plugin> | ||
<name>Tools.portlets.registry</name> | ||
<set-method>initListener</set-method> | ||
<type>org.exoplatform.application.registry.ApplicationCategoriesPlugins</type> | ||
<description>this listener init the portlets are registered in PortletRegister</description> | ||
<init-params> | ||
<value-param> | ||
<name>merge</name> | ||
<value>true</value> | ||
</value-param> | ||
<value-param> | ||
<name>system</name> | ||
<value>true</value> | ||
</value-param> | ||
<object-param> | ||
<name>tools</name> | ||
<object type="org.exoplatform.application.registry.ApplicationCategory"> | ||
<field name="name"> | ||
<string>Tools</string> | ||
</field> | ||
<field name="displayName"> | ||
<string>Tools</string> | ||
</field> | ||
<field name="description"> | ||
<string>Applications for tools</string> | ||
</field> | ||
<field name="accessPermissions"> | ||
<collection type="java.util.ArrayList" item-type="java.lang.String"> | ||
<value> | ||
<string>*:/platform/users</string> | ||
</value> | ||
</collection> | ||
</field> | ||
<field name="applications"> | ||
<collection type="java.util.ArrayList"> | ||
<value> | ||
<object type="org.exoplatform.application.registry.Application"> | ||
<field name="applicationName"> | ||
<string>WhoIsOnLinePortlet</string> | ||
</field> | ||
<field name="categoryName"> | ||
<string>tools</string> | ||
</field> | ||
<field name="displayName"> | ||
<string>Who is on Line</string> | ||
</field> | ||
<field name="description"> | ||
<string>Who Is OnLine Portlet Portlet</string> | ||
</field> | ||
<field name="type"> | ||
<string>portlet</string> | ||
</field> | ||
<field name="contentId"> | ||
<string>social-portlet/WhoIsOnLinePortlet</string> | ||
</field> | ||
<field name="accessPermissions"> | ||
<collection type="java.util.ArrayList" item-type="java.lang.String"> | ||
<value> | ||
<string>*:/platform/users</string> | ||
</value> | ||
</collection> | ||
</field> | ||
</object> | ||
</value> | ||
</collection> | ||
</field> | ||
</object> | ||
</object-param> | ||
</init-params> | ||
</component-plugin> | ||
</external-component-plugins> | ||
</configuration> |