How to disable an app type in WSO2 App Manager

WSO2 App Manager 1.2.o provides capability to manage web apps, sites and mobile apps. If your organization wants to manage only particular type of app you should be able to disable other app types. For example you need App Manager to manager only the Mobile Apps in your organization. In this cases showing the links related to webapp and sites in both publisher and store is not a good option.

By default all three app types are enabled. To disable any of the app type

  • open the app-manager.xml which can be found in <APPM_HOME>/repository/conf.
  • Find the element <EnabledAssetTypeList>. This will have all enabled app types. To disable an app type remove its entry from this config.
<EnabledAssetTypeList>
<Type>webapp</Type>
<Type>site</Type>
<Type>mobileapp</Type>
</EnabledAssetTypeList>

If you want to change app display order in left menu in store ,then change the order in above configuration. E.g if want to display mobile app fist then webapp and then site ,change the order as follow

<EnabledAssetTypeList>
<Type>mobileapp</Type>
<Type>webapp</Type>
<Type>site</Type>
</EnabledAssetTypeList>