private void initializeTableHeaders() {
    CCActionTableModel model = getTableModel(VERSION_TABLE);
    model.setRowSelected(false);

    model.setActionValue("NameColumn", "VersionHighlight.heading1");
    model.setActionValue("FirstColumn", "VersionHighlight.heading2");
    model.setActionValue("SecondColumn", "VersionHighlight.heading3");
    model.setActionValue("ThirdColumn", "VersionHighlight.heading4");
    model.setActionValue("SupportColumn", "VersionHighlight.heading5");
  }
 private void createTableModel() {
   tblModel =
       new CCActionTableModel(
           getClass()
               .getClassLoader()
               .getResourceAsStream("com/sun/identity/console/tblServerConfigAdvanced.xml"));
   tblModel.setTitleLabel("label.items");
   tblModel.setActionValue(TBL_BUTTON_ADD, "table.serverconfig.advanced.properties.button.new");
   tblModel.setActionValue(
       TBL_BUTTON_DELETE, "table.serverconfig.advanced.properties.button.delete");
   tblModel.setActionValue(
       TBL_COL_NAME, "table.serverconfig.advanced.properties.name.column.name");
   tblModel.setActionValue(
       TBL_COL_VALUE, "table.serverconfig.advanced.properties.value.column.name");
 }
 private void createHandlersTableModel() {
   CCActionTableModel tblModel =
       new CCActionTableModel(
           getClass()
               .getClassLoader()
               .getResourceAsStream("com/sun/identity/console/tblWSAuthentication.xml"));
   tblModel.setTitleLabel("label.items");
   tblModel.setActionValue(
       TBL_HANDLERS_COL_KEY, "webservices.authentication.service.table.handlers.key");
   tblModel.setActionValue(
       TBL_HANDLERS_COL_CLASS, "webservices.authentication.service.table.handlers.class");
   tblModel.setActionValue(
       TBL_HANDLERS_ADD_BTN, "webservices.authentication.service.table.handlers.add.button");
   tblModel.setActionValue(
       TBL_HANDLERS_DELETE_BTN, "webservices.authentication.service.table.handlers.delete.button");
   propertySheetModel.setModel(WSAuthNServicesModelImpl.ATTRIBUTE_NAME_HANDLERS, tblModel);
 }
  private void createRequestHandlerListTableModel() {
    CCActionTableModel tblModel =
        new CCActionTableModel(
            getClass()
                .getClassLoader()
                .getResourceAsStream(
                    "com/sun/identity/console/tblSAML2SOAPBindingRequestHandlerList.xml"));

    tblModel.setTitleLabel("label.items");
    tblModel.setActionValue(
        TBL_REQUEST_HANDLER_LIST_COL_KEY, "soapBinding.service.table.requestHandlerList.key");
    tblModel.setActionValue(
        TBL_REQUEST_HANDLER_LIST_COL_CLASS, "soapBinding.service.table.requestHandlerList.class");
    tblModel.setActionValue(
        TBL_REQUEST_HANDLER_LIST_COL_ACTION, "soapBinding.service.table.requestHandlerList.action");
    tblModel.setActionValue(
        TBL_REQUEST_HANDLER_LIST_ADD_BTN,
        "soapBinding.service.table.requestHandlerList.add.button");
    tblModel.setActionValue(
        TBL_REQUEST_HANDLER_LIST_DELETE_BTN,
        "soapBinding.service.table.requestHandlerList.delete.button");
    propertySheetModel.setModel(
        SCSAML2SOAPBindingModelImpl.ATTRIBUTE_NAME_REQUEST_HANDLER_LIST, tblModel);
  }