@Override
  protected void loadSettingsFrom(NodeSettingsRO settings, PortObjectSpec[] specs)
      throws NotConfigurableException {

    config = new GoogleAnalyticsUpdateWebPropertyConfig();
    config.load(settings);

    wpId.setText(config.getWpId());
    wpKind.setText(config.getWpKind());
    wpSelfLink.setText(config.getWpSelfLink());
    wpAccountId.setText(config.getWpAccountId());
    wpInternalWebPropertyId.setText(config.getWpInternalWebPropertyId());
    wpName.setText(config.getWpName());
    wpWebsiteUrl.setText(config.getWpWebsiteUrl());
    wpLevel.setText(config.getWpLevel());
    wpProfileCount.setText(Integer.toString(config.getWpProfileCount()));
    wpIndustryVertical.setSelectedItem(config.getWpIndustryVertical());
    wpDefaultProfileId.setText(Long.toString(config.getWpDefaultProfileId()));
    wpPermissionsEffective.setText(config.getWpPermissionsEffective());
    parentLinkType.setText(config.getParentLinkType());
    parentLinkHref.setText(config.getParentLinkHref());
    childLinkType.setText(config.getChildLinkType());
    childLinkHref.setText(config.getChildLinkHref());
  }