Пример #1
0
 /** Set contact to be edited or use null for new one */
 public void setContact(Contact contact) {
   setMultiMode(false);
   if (contact == null) {
     nameTextField.setText(null);
     numberTextField.setText(config.getCountryPrefix());
   } else {
     nameTextField.setText(contact.getName());
     numberTextField.setText(contact.getNumber());
     gatewayComboBox.setSelectedGateway(contact.getGateway());
   }
   userSet = false;
 }
Пример #2
0
  /** Checks if some update is needed to be done and executes it if neccessary */
  public static void update() throws Exception {
    String version = Config.getInstance().getVersion();
    if (StringUtils.isEmpty(version)) {
      // program is started for the first time, no update neccessary
      return;
    }
    if (ObjectUtils.equals(version, Config.getLatestVersion())) { // already updated
      return;
    }
    logger.log(
        Level.INFO,
        "Updating from legacy version {0} to current version {1}",
        new Object[] {version, Config.getLatestVersion()});

    // changes to 1.4
    if (Config.compareProgramVersions(version, "1.4") < 0) {
      // add message ID to queue
      logger.fine("Updating queue to add message IDs...");
      try {
        Field queueFileField = PersistenceManager.class.getDeclaredField("queueFile");
        queueFileField.setAccessible(true);
        File queueFile = (File) queueFileField.get(null);

        List<String> lines = FileUtils.readLines(queueFile, "UTF-8");
        ArrayList<String> newLines = new ArrayList<String>();
        for (String line : lines) {
          newLines.add(line + ",");
        }
        FileUtils.writeLines(queueFile, "UTF-8", newLines);
      } catch (Exception ex) {
        logger.log(Level.SEVERE, "Updating queue file failed", ex);
      }
    }

    // changes to 0.8.0
    if (Config.compareProgramVersions(version, "0.8.0") < 0) {
      // set country prefix from locale
      if (StringUtils.isEmpty(Config.getInstance().getCountryPrefix())) {
        Config.getInstance()
            .setCountryPrefix(CountryPrefix.getCountryPrefix(Locale.getDefault().getCountry()));
      }
    }

    // changes to 0.17.0
    if (Config.compareProgramVersions(version, "0.16.0") <= 0) {
      // keyring encryption changed from AES to XOR
      logger.fine("Updating keyring file to newer encryption...");
      try {
        byte[] passphrase =
            new byte[] {
              -53, -103, 123, -53, -119, -12, -27, -82,
              3, -115, 119, -101, 86, 92, 92, 28
            };
        SecretKeySpec keySpec = new SecretKeySpec(passphrase, "AES");
        String CIPHER_TRANSFORMATION = "AES/ECB/PKCS5Padding";
        Cipher cipher = Cipher.getInstance(CIPHER_TRANSFORMATION);
        cipher.init(Cipher.DECRYPT_MODE, keySpec);

        Field keyringFileField = PersistenceManager.class.getDeclaredField("keyringFile");
        keyringFileField.setAccessible(true);
        File keyringFile = (File) keyringFileField.get(null);

        ContinuousSaveManager.disableKeyring();
        Keyring keyring = Keyring.getInstance();
        keyring.clearKeys();

        CsvReader reader = new CsvReader(keyringFile.getPath(), ',', Charset.forName("UTF-8"));
        reader.setUseComments(true);
        while (reader.readRecord()) {
          String gatewayName = reader.get(0);
          String login = reader.get(1);
          String password = reader.get(2);

          byte[] ciphertext = Base64.decodeBase64(password.getBytes("UTF-8"));
          byte[] cleartext = cipher.doFinal(ciphertext);
          password = new String(cleartext, "UTF-8");

          Tuple<String, String> key = new Tuple<String, String>(login, password);
          keyring.putKey(gatewayName, key);
        }
        reader.close();

        ContinuousSaveManager.enableKeyring();
      } catch (Exception ex) {
        logger.log(Level.SEVERE, "Updating keyring file failed", ex);
      }
    }

    // changes to 0.22.0
    if (Config.compareProgramVersions(version, "0.21") <= 0) {
      // transfer senderName and senderNumber settings

      Field configFileField = PersistenceManager.class.getDeclaredField("configFile");
      configFileField.setAccessible(true);
      File configFile = (File) configFileField.get(null);

      DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
      DocumentBuilder db = dbf.newDocumentBuilder();
      XPathFactory xpf = XPathFactory.newInstance();
      XPath xpath = xpf.newXPath();

      Document doc = db.parse(configFile);
      String senderNumber = xpath.evaluate("//void[@property='senderNumber']/string", doc);
      String senderName = xpath.evaluate("//void[@property='senderName']/string", doc);

      Signature defaultSig = Signatures.getInstance().get(Signature.DEFAULT.getProfileName());
      if (StringUtils.isNotEmpty(senderName)) {
        defaultSig.setUserName(senderName);
      }
      if (StringUtils.isNotEmpty(senderNumber)) {
        defaultSig.setUserNumber(senderNumber);
      }
    }
  }
Пример #3
0
  /** Creates new form EditContactPanel */
  public EditContactPanel() {
    initComponents();
    // if not Substance LaF, add clipboard popup menu to text components
    if (!config.getLookAndFeel().equals(ThemeManager.LAF.SUBSTANCE)) {
      ClipboardPopupMenu.register(nameTextField);
      ClipboardPopupMenu.register(numberTextField);
    }

    // listen for changes in number and guess gateway
    numberTextField
        .getDocument()
        .addDocumentListener(
            new AbstractDocumentListener() {
              @Override
              public void onUpdate(DocumentEvent e) {
                boolean usrSet = userSet;
                if (!userSet) {
                  gatewayComboBox.selectSuggestedGateway(numberTextField.getText());
                }
                gatewayComboBox.setFilter(numberTextField.getText());
                userSet = usrSet;
                updateCountryInfoLabel();
                updateSuggestGatewayButton();
                EditContactPanel.this.revalidate();
              }
            });

    // on keyring update update credentialsInfoLabel
    keyring.addActionListener(
        new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            updateCredentialsInfoLabel();
            EditContactPanel.this.revalidate();
          }
        });

    // when some info label is shown or hidden, update the frame size
    ComponentListener resizeListener =
        new ComponentAdapter() {
          @Override
          public void componentHidden(ComponentEvent e) {
            askForResize();
          }

          @Override
          public void componentShown(ComponentEvent e) {
            askForResize();
          }

          private void askForResize() {
            actionSupport.fireActionPerformed(ActionEventSupport.ACTION_NEED_RESIZE, null);
          }
        };
    for (Component comp : infoPanel.getComponents()) {
      comp.addComponentListener(resizeListener);
    }

    // update components
    gatewayComboBoxActionPerformed(null);
  }
Пример #4
0
/**
 * Add new or edit current contact
 *
 * @author ripper
 */
public class EditContactPanel extends javax.swing.JPanel {
  private static final ResourceBundle l10n = L10N.l10nBundle;

  private Config config = Config.getInstance();
  private Keyring keyring = Keyring.getInstance();
  private boolean multiMode; // edit multiple contacts
  private boolean userSet; // whether gateway was set by user or by program

  // <editor-fold defaultstate="collapsed" desc="ActionEvent support">
  private ActionEventSupport actionSupport = new ActionEventSupport(this);

  public void addActionListener(ActionListener actionListener) {
    actionSupport.addActionListener(actionListener);
  }

  public void removeActionListener(ActionListener actionListener) {
    actionSupport.removeActionListener(actionListener);
  }
  // </editor-fold>

  /** Creates new form EditContactPanel */
  public EditContactPanel() {
    initComponents();
    // if not Substance LaF, add clipboard popup menu to text components
    if (!config.getLookAndFeel().equals(ThemeManager.LAF.SUBSTANCE)) {
      ClipboardPopupMenu.register(nameTextField);
      ClipboardPopupMenu.register(numberTextField);
    }

    // listen for changes in number and guess gateway
    numberTextField
        .getDocument()
        .addDocumentListener(
            new AbstractDocumentListener() {
              @Override
              public void onUpdate(DocumentEvent e) {
                boolean usrSet = userSet;
                if (!userSet) {
                  gatewayComboBox.selectSuggestedGateway(numberTextField.getText());
                }
                gatewayComboBox.setFilter(numberTextField.getText());
                userSet = usrSet;
                updateCountryInfoLabel();
                updateSuggestGatewayButton();
                EditContactPanel.this.revalidate();
              }
            });

    // on keyring update update credentialsInfoLabel
    keyring.addActionListener(
        new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            updateCredentialsInfoLabel();
            EditContactPanel.this.revalidate();
          }
        });

    // when some info label is shown or hidden, update the frame size
    ComponentListener resizeListener =
        new ComponentAdapter() {
          @Override
          public void componentHidden(ComponentEvent e) {
            askForResize();
          }

          @Override
          public void componentShown(ComponentEvent e) {
            askForResize();
          }

          private void askForResize() {
            actionSupport.fireActionPerformed(ActionEventSupport.ACTION_NEED_RESIZE, null);
          }
        };
    for (Component comp : infoPanel.getComponents()) {
      comp.addComponentListener(resizeListener);
    }

    // update components
    gatewayComboBoxActionPerformed(null);
  }

  /** Show or hide suggest gateway button */
  private void updateSuggestGatewayButton() {
    ArrayList<Gateway> gws =
        Gateways.getInstance().suggestGateway(numberTextField.getText()).get1();
    boolean visible = false;
    if (gws.size() > 1) {
      visible = true;
    }
    if (gws.size() == 1 && gatewayComboBox.getSelectedGateway() != gws.get(0)) {
      visible = true;
    }
    suggestGatewayButton.setVisible(visible);
  }

  /**
   * This method is called from within the constructor to initialize the form. WARNING: Do NOT
   * modify this code. The content of this method is always regenerated by the Form Editor.
   */
  // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
  private void initComponents() {

    nameTextField = new JTextField();
    nameTextField.requestFocusInWindow();
    numberTextField =
        new JTextField() {
          @Override
          public String getText() {
            String text = super.getText();
            if (StringUtils.isNotEmpty(text) && !text.startsWith("+"))
              text = config.getCountryPrefix() + text;
            return text;
          }
        };
    gatewayComboBox = new GatewayComboBox();
    nameLabel = new JLabel();
    numberLabel = new JLabel();
    gatewayLabel = new JLabel();
    suggestGatewayButton = new JButton();
    infoPanel = new JPanel();
    countryInfoLabel = new InfoLabel();
    credentialsInfoLabel = new InfoLabel();
    nameWarnLabel = new JLabel();
    numberWarnLabel = new JLabel();

    nameTextField.setToolTipText(
        l10n.getString("EditContactPanel.nameTextField.toolTipText")); // NOI18N
    nameTextField.addFocusListener(
        new FocusAdapter() {
          public void focusLost(FocusEvent evt) {
            nameTextFieldFocusLost(evt);
          }
        });

    numberTextField.setColumns(13);
    numberTextField.setToolTipText(
        l10n.getString("EditContactPanel.numberTextField.toolTipText")); // NOI18N
    numberTextField.addFocusListener(
        new FocusAdapter() {
          public void focusLost(FocusEvent evt) {
            numberTextFieldFocusLost(evt);
          }
        });

    gatewayComboBox.addActionListener(
        new ActionListener() {
          public void actionPerformed(ActionEvent evt) {
            gatewayComboBoxActionPerformed(evt);
          }
        });

    nameLabel.setLabelFor(nameTextField);
    Mnemonics.setLocalizedText(
        nameLabel, l10n.getString("EditContactPanel.nameLabel.text")); // NOI18N
    nameLabel.setToolTipText(nameTextField.getToolTipText());

    numberLabel.setLabelFor(numberTextField);
    Mnemonics.setLocalizedText(
        numberLabel, l10n.getString("EditContactPanel.numberLabel.text")); // NOI18N
    numberLabel.setToolTipText(numberTextField.getToolTipText());

    gatewayLabel.setLabelFor(gatewayComboBox);
    Mnemonics.setLocalizedText(
        gatewayLabel, l10n.getString("EditContactPanel.gatewayLabel.text")); // NOI18N
    gatewayLabel.setToolTipText(gatewayComboBox.getToolTipText());

    suggestGatewayButton.setAction(new SuggestGatewayAction());

    Mnemonics.setLocalizedText(
        countryInfoLabel, l10n.getString("EditContactPanel.countryInfoLabel.text")); // NOI18N
    countryInfoLabel.setVisible(false);
    Mnemonics.setLocalizedText(
        credentialsInfoLabel, l10n.getString("EditContactPanel.credentialsInfoLabel.text"));
    credentialsInfoLabel.setText(
        MessageFormat.format(
            l10n.getString("EditContactPanel.credentialsInfoLabel.text"), Links.CONFIG_GATEWAYS));
    credentialsInfoLabel.setVisible(false);

    GroupLayout infoPanelLayout = new GroupLayout(infoPanel);
    infoPanel.setLayout(infoPanelLayout);
    infoPanelLayout.setHorizontalGroup(
        infoPanelLayout
            .createParallelGroup(Alignment.LEADING)
            .addComponent(
                credentialsInfoLabel,
                Alignment.TRAILING,
                GroupLayout.DEFAULT_SIZE,
                411,
                Short.MAX_VALUE)
            .addComponent(countryInfoLabel, GroupLayout.DEFAULT_SIZE, 411, Short.MAX_VALUE));
    infoPanelLayout.setVerticalGroup(
        infoPanelLayout
            .createParallelGroup(Alignment.LEADING)
            .addGroup(
                infoPanelLayout
                    .createSequentialGroup()
                    .addComponent(credentialsInfoLabel)
                    .addPreferredGap(ComponentPlacement.RELATED)
                    .addComponent(countryInfoLabel)));

    nameWarnLabel.setIcon(
        new ImageIcon(getClass().getResource("/esmska/resources/warning-16.png"))); // NOI18N
    nameWarnLabel.setToolTipText(nameTextField.getToolTipText());
    nameWarnLabel.setVisible(false);

    numberWarnLabel.setIcon(
        new ImageIcon(getClass().getResource("/esmska/resources/warning-16.png"))); // NOI18N
    numberWarnLabel.setToolTipText(numberTextField.getToolTipText());
    numberWarnLabel.setVisible(false);

    GroupLayout layout = new GroupLayout(this);
    this.setLayout(layout);
    layout.setHorizontalGroup(
        layout
            .createParallelGroup(Alignment.LEADING)
            .addGroup(
                layout
                    .createSequentialGroup()
                    .addContainerGap()
                    .addGroup(
                        layout
                            .createParallelGroup(Alignment.LEADING)
                            .addComponent(
                                infoPanel,
                                GroupLayout.DEFAULT_SIZE,
                                GroupLayout.DEFAULT_SIZE,
                                Short.MAX_VALUE)
                            .addGroup(
                                layout
                                    .createSequentialGroup()
                                    .addGroup(
                                        layout
                                            .createParallelGroup(Alignment.LEADING)
                                            .addComponent(numberLabel)
                                            .addComponent(nameLabel)
                                            .addComponent(gatewayLabel))
                                    .addPreferredGap(ComponentPlacement.RELATED)
                                    .addGroup(
                                        layout
                                            .createParallelGroup(Alignment.LEADING)
                                            .addGroup(
                                                Alignment.TRAILING,
                                                layout
                                                    .createSequentialGroup()
                                                    .addComponent(
                                                        gatewayComboBox,
                                                        GroupLayout.DEFAULT_SIZE,
                                                        266,
                                                        Short.MAX_VALUE)
                                                    .addPreferredGap(ComponentPlacement.RELATED)
                                                    .addComponent(suggestGatewayButton))
                                            .addGroup(
                                                Alignment.TRAILING,
                                                layout
                                                    .createSequentialGroup()
                                                    .addGroup(
                                                        layout
                                                            .createParallelGroup(Alignment.LEADING)
                                                            .addComponent(
                                                                numberTextField,
                                                                GroupLayout.DEFAULT_SIZE,
                                                                278,
                                                                Short.MAX_VALUE)
                                                            .addComponent(
                                                                nameTextField,
                                                                Alignment.TRAILING,
                                                                GroupLayout.DEFAULT_SIZE,
                                                                278,
                                                                Short.MAX_VALUE))
                                                    .addPreferredGap(ComponentPlacement.RELATED)
                                                    .addGroup(
                                                        layout
                                                            .createParallelGroup(Alignment.LEADING)
                                                            .addComponent(
                                                                nameWarnLabel, Alignment.TRAILING)
                                                            .addComponent(
                                                                numberWarnLabel,
                                                                Alignment.TRAILING))))))
                    .addContainerGap()));

    layout.linkSize(
        SwingConstants.HORIZONTAL, new Component[] {gatewayLabel, nameLabel, numberLabel});

    layout.setVerticalGroup(
        layout
            .createParallelGroup(Alignment.LEADING)
            .addGroup(
                layout
                    .createSequentialGroup()
                    .addContainerGap()
                    .addGroup(
                        layout
                            .createParallelGroup(Alignment.LEADING)
                            .addGroup(
                                layout
                                    .createParallelGroup(Alignment.BASELINE)
                                    .addComponent(nameLabel)
                                    .addComponent(
                                        nameTextField,
                                        GroupLayout.PREFERRED_SIZE,
                                        GroupLayout.DEFAULT_SIZE,
                                        GroupLayout.PREFERRED_SIZE))
                            .addComponent(nameWarnLabel))
                    .addPreferredGap(ComponentPlacement.RELATED)
                    .addGroup(
                        layout
                            .createParallelGroup(Alignment.LEADING)
                            .addGroup(
                                layout
                                    .createParallelGroup(Alignment.BASELINE)
                                    .addComponent(numberLabel)
                                    .addComponent(
                                        numberTextField,
                                        GroupLayout.PREFERRED_SIZE,
                                        GroupLayout.DEFAULT_SIZE,
                                        GroupLayout.PREFERRED_SIZE))
                            .addComponent(numberWarnLabel))
                    .addPreferredGap(ComponentPlacement.RELATED)
                    .addGroup(
                        layout
                            .createParallelGroup(Alignment.TRAILING)
                            .addGroup(
                                layout
                                    .createParallelGroup(Alignment.BASELINE)
                                    .addComponent(gatewayLabel)
                                    .addComponent(
                                        gatewayComboBox,
                                        GroupLayout.PREFERRED_SIZE,
                                        GroupLayout.DEFAULT_SIZE,
                                        GroupLayout.PREFERRED_SIZE))
                            .addComponent(suggestGatewayButton))
                    .addPreferredGap(ComponentPlacement.RELATED)
                    .addComponent(
                        infoPanel,
                        GroupLayout.PREFERRED_SIZE,
                        GroupLayout.DEFAULT_SIZE,
                        GroupLayout.PREFERRED_SIZE)
                    .addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)));

    layout.linkSize(
        SwingConstants.VERTICAL,
        new Component[] {nameTextField, nameWarnLabel, numberTextField, numberWarnLabel});
  } // </editor-fold>//GEN-END:initComponents

  /** Check if the form is valid */
  public boolean validateForm() {
    boolean valid = true;
    boolean focusTransfered = false;
    JComponent[] comps;
    if (multiMode) {
      comps = new JComponent[] {};
    } else {
      comps = new JComponent[] {nameTextField, numberTextField};
    }
    for (JComponent c : comps) {
      valid = checkValid(c) && valid;
      if (!valid && !focusTransfered) {
        c.requestFocusInWindow();
        focusTransfered = true;
      }
    }
    revalidate();
    return valid;
  }

  /** checks if component's content is valid */
  private boolean checkValid(JComponent c) {
    boolean valid = true;
    if (c == nameTextField) {
      valid = StringUtils.isNotEmpty(nameTextField.getText());
      nameWarnLabel.setVisible(!valid);
    } else if (c == numberTextField) {
      valid = Contact.isValidNumber(numberTextField.getText());
      numberWarnLabel.setVisible(!valid);
    }
    return valid;
  }

  /** Enable or disable multi-editing mode */
  private void setMultiMode(boolean multiMode) {
    this.multiMode = multiMode;
    nameTextField.setEnabled(!multiMode);
    numberTextField.setEnabled(!multiMode);
    suggestGatewayButton.setVisible(!multiMode);
    revalidate();
  }

  /**
   * Show warning if user selected gateway can't send messages to a recipient number (based on
   * supported prefixes list)
   */
  private void updateCountryInfoLabel() {
    countryInfoLabel.setVisible(false);

    // ensure that fields are sufficiently filled in
    Gateway gateway = gatewayComboBox.getSelectedGateway();
    String number = numberTextField.getText();
    if (gateway == null || !Contact.isValidNumber(number)) {
      return;
    }

    boolean supported = Gateways.isNumberSupported(gateway, number);
    if (!supported) {
      String text =
          MessageFormat.format(
              l10n.getString("EditContactPanel.countryInfoLabel.text"),
              StringUtils.join(gateway.getSupportedPrefixes(), ','));
      countryInfoLabel.setText(text);
      countryInfoLabel.setVisible(true);
    }
  }

  /**
   * Show warning if user selected gateway requiring registration and no credentials are filled in
   */
  private void updateCredentialsInfoLabel() {
    Gateway gateway = gatewayComboBox.getSelectedGateway();
    if (gateway != null
        && gateway.hasFeature(Feature.LOGIN_ONLY)
        && keyring.getKey(gateway.getName()) == null) {
      credentialsInfoLabel.setVisible(true);
    } else {
      credentialsInfoLabel.setVisible(false);
    }
  }

  private void nameTextFieldFocusLost(FocusEvent evt) { // GEN-FIRST:event_nameTextFieldFocusLost
    checkValid(nameTextField);
  } // GEN-LAST:event_nameTextFieldFocusLost

  private void numberTextFieldFocusLost(
      FocusEvent evt) { // GEN-FIRST:event_numberTextFieldFocusLost
    checkValid(numberTextField);
  } // GEN-LAST:event_numberTextFieldFocusLost

  private void gatewayComboBoxActionPerformed(
      ActionEvent evt) { // GEN-FIRST:event_gatewayComboBoxActionPerformed
    userSet = (evt != null);

    updateCredentialsInfoLabel();
    updateCountryInfoLabel();
    updateSuggestGatewayButton();
    revalidate();
  } // GEN-LAST:event_gatewayComboBoxActionPerformed

  /** Set contact to be edited or use null for new one */
  public void setContact(Contact contact) {
    setMultiMode(false);
    if (contact == null) {
      nameTextField.setText(null);
      numberTextField.setText(config.getCountryPrefix());
    } else {
      nameTextField.setText(contact.getName());
      numberTextField.setText(contact.getNumber());
      gatewayComboBox.setSelectedGateway(contact.getGateway());
    }
    userSet = false;
  }

  /** Set contacts for collective editing. May not be null. */
  public void setContacts(Collection<Contact> contacts) {
    if (contacts.size() <= 1) {
      setContact(contacts.size() <= 0 ? null : contacts.iterator().next());
      return;
    }
    setMultiMode(true);
    gatewayComboBox.setSelectedGateway(contacts.iterator().next().getGateway());
  }

  /** Get currently edited contact */
  public Contact getContact() {
    String name = nameTextField.getText();
    String number = numberTextField.getText();
    String gateway = gatewayComboBox.getSelectedGatewayName();

    if (!multiMode
        && (StringUtils.isEmpty(name)
            || StringUtils.isEmpty(number)
            || StringUtils.isEmpty(gateway))) {
      return null;
    } else {
      return new Contact(name, number, gateway);
    }
  }

  /** Improve focus etc. before displaying panel */
  public void prepareForShow() {
    // give focus
    if (multiMode) {
      gatewayComboBox.requestFocusInWindow();
    } else {
      nameTextField.requestFocusInWindow();
      nameTextField.selectAll();
    }
  }

  /** Action for suggesting new gateway */
  private class SuggestGatewayAction extends Actions.SuggestGatewayAction {

    public SuggestGatewayAction() {
      super(gatewayComboBox, numberTextField);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
      super.actionPerformed(e);
      userSet = false;
    }
  }

  // Variables declaration - do not modify//GEN-BEGIN:variables
  private InfoLabel countryInfoLabel;
  private InfoLabel credentialsInfoLabel;
  private GatewayComboBox gatewayComboBox;
  private JLabel gatewayLabel;
  private JPanel infoPanel;
  private JLabel nameLabel;
  private JTextField nameTextField;
  private JLabel nameWarnLabel;
  private JLabel numberLabel;
  private JTextField numberTextField;
  private JLabel numberWarnLabel;
  private JButton suggestGatewayButton;
  // End of variables declaration//GEN-END:variables

}