Class PanelUpdateBundle

All Implemented Interfaces:
Serializable, overit.geocall.marks.MethodExposer, overit.geocall.marks.NameExposer, AjaxableComponent, Badgeable, Hideable, Identified, Tool, overit.geocall.ux.configurability.UIConfigurable, overit.geocall.ux.edm.ModelConfigurable

public class PanelUpdateBundle extends Panel
Panel that allows to update an existing bundle.
Since:
20.1
See Also:
GCApi:
controller
  • Field Details

    • form

      protected Form form
    • confirmConsumer

      protected transient Consumer<String> confirmConsumer
  • Constructor Details

    • PanelUpdateBundle

      public PanelUpdateBundle()
  • Method Details

    • onOpen

      public void onOpen(Object o)
      Description copied from class: Container
      Method called when is executed the WindowManager.push(overit.geocall.basic.ui.Window, java.lang.Object) of the Window that contains the Container. It calls the onOpen(o) method of all the Container's childrens.
      If a page is opened through the process of a route, it is possible that the route was called with params to pass to the page.
      The route params could be passed specifying them like query string's param on the url, using commas or the '=' character, to separate the keys and the values. Valid syntaxs are: "&params=KEY1,VAL1,KEY2,VAL2" or "&params=KEY1=VAL1,KEY2=VAL2"
      In that case it is possible to retrieve those params via the WindowManager.getRouteParams() method that returns an HashGetter with the params passed as parameters.
      For example it's possible to retrieve and use the params in this way: HashGetter hg = getWM().getRouteParams();
      String val1 = hg.getString("key1",null);
      String val2 = hg.getString("key2",null);
      Overrides:
      onOpen in class Container
      Parameters:
      o - Object received from the caller
    • initWindow

      protected void initWindow()
    • setConfirmConsumer

      public void setConfirmConsumer(Consumer<String> confirmConsumer)
      Sets the consumer function to handle bundle update confirmation. The consumer receives the new bundle name as parameters when confirmation occurs.
      Parameters:
      confirmConsumer - the Consumer to handle the bundle update confirmation
    • show

      public void show(Serializable o)
      Description copied from class: Panel
      It shows (make visible with the pop-up effect) the panel
      Overrides:
      show in class Panel
      Parameters:
      o - serializable object saved as a global variable of the panel
    • onConfirmUpdateBundle

      public boolean onConfirmUpdateBundle(UIMessage uim)
      UI event handler to update the bundle header.
      Parameters:
      uim - the UIMessage
      Returns:
      true to break the responsibility chain, false otherwise.