Examples of appendComboBox()


Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

                XMLSignature.ALGO_ID_SIGNATURE_RSA_RIPEMD160}, "Set the name of the signature encryption algorithm to use");
        form.appendComboBox("signatureCanonicalization", "Signature Canonicalization", new String[]{DEFAULT_OPTION,
                WSConstants.C14N_OMIT_COMMENTS, WSConstants.C14N_WITH_COMMENTS, WSConstants.C14N_EXCL_OMIT_COMMENTS,
                WSConstants.C14N_EXCL_WITH_COMMENTS}, "Set the canonicalization method to use.");

        form.appendComboBox("digestAlgorithm", "Digest Algorithm", new String[]{DEFAULT_OPTION,
                MessageDigestAlgorithm.ALGO_ID_DIGEST_NOT_RECOMMENDED_MD5, MessageDigestAlgorithm.ALGO_ID_DIGEST_SHA1,
                MessageDigestAlgorithm.ALGO_ID_DIGEST_SHA256, MessageDigestAlgorithm.ALGO_ID_DIGEST_SHA384,
                MessageDigestAlgorithm.ALGO_ID_DIGEST_SHA512, MessageDigestAlgorithm.ALGO_ID_DIGEST_RIPEMD160},
                "Set the digest algorithm to use");
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

        wssContainerListener = new InternalWssContainerListener();
        getWssContainer().addWssContainerListener(wssContainerListener);

        KeystoresComboBoxModel keystoresComboBoxModel = new KeystoresComboBoxModel(getWssContainer(), getWssContainer()
                .getCryptoByName(crypto), true);
        form.appendComboBox("crypto", "Keystore", keystoresComboBoxModel,
                "Selects the Keystore containing the key to use for signing").addItemListener(new ItemListener() {

            public void itemStateChanged(ItemEvent e) {
                keyAliasComboBoxModel.update(getWssContainer().getCryptoByName(crypto));
            }
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

                keyAliasComboBoxModel.update(getWssContainer().getCryptoByName(crypto));
            }
        });

        keyAliasComboBoxModel = new KeyAliasComboBoxModel(getWssContainer().getCryptoByName(crypto));
        form.appendComboBox("username", "Alias", keyAliasComboBoxModel, "The alias for the key to use for encryption");

        form.appendPasswordField("password", "Password",
                "The password for the key to use for encryption (if it is private)");

        form.appendComboBox("keyIdentifierType", "Key Identifier Type", new Integer[]{1, 2, 3, 4, 5, 6, 8},
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

        form.appendComboBox("username", "Alias", keyAliasComboBoxModel, "The alias for the key to use for encryption");

        form.appendPasswordField("password", "Password",
                "The password for the key to use for encryption (if it is private)");

        form.appendComboBox("keyIdentifierType", "Key Identifier Type", new Integer[]{1, 2, 3, 4, 5, 6, 8},
                "Sets which key identifier to use").setRenderer(new KeyIdentifierTypeRenderer());

        (embeddedKeyNameTextField = form.appendTextField("embeddedKeyName", "Embedded Key Name",
                "The embedded key name")).setEnabled(keyIdentifierType == WSConstants.EMBEDDED_KEYNAME);
        (embeddedKeyNamePassword = form.appendPasswordField("embeddedKeyPassword", "Embedded Key Password",
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

        (embeddedKeyNameTextField = form.appendTextField("embeddedKeyName", "Embedded Key Name",
                "The embedded key name")).setEnabled(keyIdentifierType == WSConstants.EMBEDDED_KEYNAME);
        (embeddedKeyNamePassword = form.appendPasswordField("embeddedKeyPassword", "Embedded Key Password",
                "The embedded key password")).setEnabled(keyIdentifierType == WSConstants.EMBEDDED_KEYNAME);

        form.appendComboBox("symmetricEncAlgorithm", "Symmetric Encoding Algorithm", new String[]{DEFAULT_OPTION,
                WSConstants.AES_128, WSConstants.AES_192, WSConstants.AES_256, WSConstants.TRIPLE_DES},
                "Set the name of the symmetric encryption algorithm to use");

        form.appendComboBox("encKeyTransport", "Key Encryption Algorithm", new String[]{DEFAULT_OPTION,
                WSConstants.KEYTRANSPORT_RSA15, WSConstants.KEYTRANSPORT_RSAOEP},
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleBindingForm.appendComboBox()

        form.appendComboBox("symmetricEncAlgorithm", "Symmetric Encoding Algorithm", new String[]{DEFAULT_OPTION,
                WSConstants.AES_128, WSConstants.AES_192, WSConstants.AES_256, WSConstants.TRIPLE_DES},
                "Set the name of the symmetric encryption algorithm to use");

        form.appendComboBox("encKeyTransport", "Key Encryption Algorithm", new String[]{DEFAULT_OPTION,
                WSConstants.KEYTRANSPORT_RSA15, WSConstants.KEYTRANSPORT_RSAOEP},
                "Sets the algorithm to encode the symmetric key");

        form.appendCheckBox("encryptSymmetricKey", "Create Encrypted Key",
                "Indicates whether to encrypt the symmetric key into an EncryptedKey or not");
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleForm.appendComboBox()

      SimpleForm form = new SimpleForm();

      form.addSpace( 5 );
      Interface[] ifaces = getInterfaces( project );
      DefaultComboBoxModel sourceStepComboModel = new DefaultComboBoxModel();
      sourceStepCombo = form.appendComboBox( "Interfaces", sourceStepComboModel, "Target Interface" );
      sourceStepCombo.setRenderer( new ModelItemListCellRenderer() );
      for( Interface element : ifaces )
        sourceStepComboModel.addElement( element );

      propertiesCombo = form.appendComboBox( operationType, ( ( Interface )sourceStepCombo.getSelectedItem() )
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleForm.appendComboBox()

      sourceStepCombo = form.appendComboBox( "Interfaces", sourceStepComboModel, "Target Interface" );
      sourceStepCombo.setRenderer( new ModelItemListCellRenderer() );
      for( Interface element : ifaces )
        sourceStepComboModel.addElement( element );

      propertiesCombo = form.appendComboBox( operationType, ( ( Interface )sourceStepCombo.getSelectedItem() )
          .getOperationList().toArray(), "Target " + operationType );
      propertiesCombo.setRenderer( new ModelItemListCellRenderer() );

      sourceStepCombo.addActionListener( new ActionListener()
      {
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleForm.appendComboBox()

      SimpleForm form = new SimpleForm();

      form.addSpace( 5 );
      Interface[] ifaces = getInterfaces( project );
      DefaultComboBoxModel serviceComboModel = new DefaultComboBoxModel();
      serviceCombo = form.appendComboBox( "REST Services", serviceComboModel, "Target Service" );
      serviceCombo.setRenderer( new ModelItemListCellRenderer() );
      for( Interface element : ifaces )
      {
        if( element instanceof RestService )
          serviceComboModel.addElement( element );
View Full Code Here

Examples of com.eviware.soapui.support.components.SimpleForm.appendComboBox()

      {
        if( element instanceof RestService )
          serviceComboModel.addElement( element );
      }

      resourceCombo = form.appendComboBox( "REST Resources", ( ( RestService )serviceCombo.getSelectedItem() )
          .getOperationList().toArray(), "Target Resource" );
      resourceCombo.setRenderer( new ModelItemListCellRenderer() );

      methodCombo = form.appendComboBox( "REST Methods", ( ( RestResource )resourceCombo.getSelectedItem() )
          .getRestMethodList().toArray(), "Target Method" );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.