public void addPages() {
    try {
      mappingsPage = new ModuleMappingsWizardPage();

      mappingsPage.setServer(server);
      mappingsPage.setPartitionName(partitionName);
      mappingsPage.setModuleName(moduleConfig.getName());
      mappingsPage.setModuleMappings(moduleConfig.getModuleMappings());

      addPage(mappingsPage);

    } catch (Exception e) {
      throw new RuntimeException(e);
    }
  }