Store a row on ModuleClassName

The Persistence Infrastructure reads from a database table named ModuleClassName to identify Guice modules which should be loaded.

You must add a row to this database table with the name of your module. The most straightforward way to do this is to use the Data Manager, by creating a custom DMX file containing the row required:

Figure 1. DMX file to create a row for your module on ModuleClassName
          <?xml version="1.0" encoding="UTF-8"?>
<table name="ModuleClassName">
  <column
    name="moduleClassName"
    type="text"
  />
  <row>
    <attribute name="moduleClassName">
      <value>
           curam.mypackage.MyModule 
          </value>
    </attribute>
  </row>
</table>