How to get all the user created module names in a java action?

0
I want to get the list of all the user defined modules. I tried with metaObject but it’s giving all the module names including appstore module names.
asked
1 answers
2

As far as I am aware, the origin of the module doesn’t matter to a Mendix application, and this isn’t exposed to the application itself.

If you are using the SDK to carry out analysis of your application, then you can use the fromAppStore() method when you inspect the module and this returns true if the module was downloaded from the Marketplace.

https://apidocs.rnd.mendix.com/modelsdk/latest/classes/projects.module.html#fromappstore

Hope this helps.

answered