Package com.agiletec.plugins.jpmyportalplus.aps.system.services.userconfig.model

Examples of com.agiletec.plugins.jpmyportalplus.aps.system.services.userconfig.model.WidgetUpdateInfoBean


      CustomPageConfig config = this.getCustomPageConfig();
      Widget[] customShowlets = (null == config || config.getConfig() == null) ? null : config.getConfig();
      Widget[] showletsToRender = this.getPageUserConfigManager().getShowletsToRender(currentPage, customShowlets);
      Widget showlet = showletsToRender[this.getFrameToResize()];
      if (null == showlet) return true;
      WidgetUpdateInfoBean resizingFrame =
        new WidgetUpdateInfoBean(this.getFrameToResize(), showlet, status);
      this.addUpdateInfoBean(resizingFrame);
      this.executeUpdateUserConfig(currentPage);
    } catch (Throwable t) {
      ApsSystemUtils.logThrowable(t, this, "executeResizeFrame", "Error on resize frame");
      return false;
View Full Code Here


    return bean;
  }

  private void updatePageConfig(CustomPageConfig customUserPageConfig, WidgetUpdateInfoBean[] infos) {
    for (int i = 0; i < infos.length; i++) {
      WidgetUpdateInfoBean updateInfo = infos[i];
      customUserPageConfig.getConfig()[updateInfo.getFramePos()] = updateInfo.getShowlet();
      customUserPageConfig.getStatus()[updateInfo.getFramePos()] = updateInfo.getStatus();
    }
  }
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpmyportalplus.aps.system.services.userconfig.model.WidgetUpdateInfoBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.