Package org.owasp.webscarab.plugin.saml

Examples of org.owasp.webscarab.plugin.saml.SamlProxy


        String remoteReference = this.injectionUriTextField.getText();
        samlProxy.setRemoteReference(remoteReference);
    }//GEN-LAST:event_injectionUriTextFieldActionPerformed

    private void injectAttributeCheckBoxItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_injectAttributeCheckBoxItemStateChanged
        SamlProxy samlProxy = this.saml.getSamlProxy();
        boolean injectAttribute = evt.getStateChange() == ItemEvent.SELECTED;
        samlProxy.setInjectAttribute(injectAttribute);
    }//GEN-LAST:event_injectAttributeCheckBoxItemStateChanged
View Full Code Here


        boolean injectAttribute = evt.getStateChange() == ItemEvent.SELECTED;
        samlProxy.setInjectAttribute(injectAttribute);
    }//GEN-LAST:event_injectAttributeCheckBoxItemStateChanged

    private void attributeNameTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_attributeNameTextFieldActionPerformed
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String attributeName = this.attributeNameTextField.getText();
        samlProxy.setInjectionAttributeName(attributeName);
    }//GEN-LAST:event_attributeNameTextFieldActionPerformed
View Full Code Here

        String attributeName = this.attributeNameTextField.getText();
        samlProxy.setInjectionAttributeName(attributeName);
    }//GEN-LAST:event_attributeNameTextFieldActionPerformed

    private void attributeValueTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_attributeValueTextFieldActionPerformed
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String attributeValue = this.attributeValueTextField.getText();
        samlProxy.setInjectionAttributeValue(attributeValue);
    }//GEN-LAST:event_attributeValueTextFieldActionPerformed
View Full Code Here

        String attributeValue = this.attributeValueTextField.getText();
        samlProxy.setInjectionAttributeValue(attributeValue);
    }//GEN-LAST:event_attributeValueTextFieldActionPerformed

    private void injectSubjectCheckBoxItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_injectSubjectCheckBoxItemStateChanged
        SamlProxy samlProxy = this.saml.getSamlProxy();
        boolean injectSubject = evt.getStateChange() == ItemEvent.SELECTED;
        samlProxy.setInjectSubject(injectSubject);
    }//GEN-LAST:event_injectSubjectCheckBoxItemStateChanged
View Full Code Here

        boolean injectSubject = evt.getStateChange() == ItemEvent.SELECTED;
        samlProxy.setInjectSubject(injectSubject);
    }//GEN-LAST:event_injectSubjectCheckBoxItemStateChanged

    private void injectionSubjectTextFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_injectionSubjectTextFieldActionPerformed
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String injectionSubject = this.injectionSubjectTextField.getText();
        samlProxy.setInjectionSubject(injectionSubject);
    }//GEN-LAST:event_injectionSubjectTextFieldActionPerformed
View Full Code Here

        String injectionSubject = this.injectionSubjectTextField.getText();
        samlProxy.setInjectionSubject(injectionSubject);
    }//GEN-LAST:event_injectionSubjectTextFieldActionPerformed

    private void injectionSubjectTextFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_injectionSubjectTextFieldFocusLost
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String injectionSubject = this.injectionSubjectTextField.getText();
        samlProxy.setInjectionSubject(injectionSubject);
    }//GEN-LAST:event_injectionSubjectTextFieldFocusLost
View Full Code Here

        String injectionSubject = this.injectionSubjectTextField.getText();
        samlProxy.setInjectionSubject(injectionSubject);
    }//GEN-LAST:event_injectionSubjectTextFieldFocusLost

    private void injectionUriTextFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_injectionUriTextFieldFocusLost
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String remoteReference = this.injectionUriTextField.getText();
        samlProxy.setRemoteReference(remoteReference);
    }//GEN-LAST:event_injectionUriTextFieldFocusLost
View Full Code Here

        String remoteReference = this.injectionUriTextField.getText();
        samlProxy.setRemoteReference(remoteReference);
    }//GEN-LAST:event_injectionUriTextFieldFocusLost

    private void attributeNameTextFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_attributeNameTextFieldFocusLost
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String attributeName = this.attributeNameTextField.getText();
        samlProxy.setInjectionAttributeName(attributeName);
    }//GEN-LAST:event_attributeNameTextFieldFocusLost
View Full Code Here

        String attributeName = this.attributeNameTextField.getText();
        samlProxy.setInjectionAttributeName(attributeName);
    }//GEN-LAST:event_attributeNameTextFieldFocusLost

    private void attributeValueTextFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_attributeValueTextFieldFocusLost
        SamlProxy samlProxy = this.saml.getSamlProxy();
        String attributeValue = this.attributeValueTextField.getText();
        samlProxy.setInjectionAttributeValue(attributeValue);
    }//GEN-LAST:event_attributeValueTextFieldFocusLost
View Full Code Here

        String attributeValue = this.attributeValueTextField.getText();
        samlProxy.setInjectionAttributeValue(attributeValue);
    }//GEN-LAST:event_attributeValueTextFieldFocusLost

    private void injectPublicDoctypeCheckBoxItemStateChanged(java.awt.event.ItemEvent evt) {//GEN-FIRST:event_injectPublicDoctypeCheckBoxItemStateChanged
        SamlProxy samlProxy = this.saml.getSamlProxy();
        boolean injectPublicDoctype = evt.getStateChange() == ItemEvent.SELECTED;
        samlProxy.setInjectPublicDoctype(injectPublicDoctype);
    }//GEN-LAST:event_injectPublicDoctypeCheckBoxItemStateChanged
View Full Code Here

TOP

Related Classes of org.owasp.webscarab.plugin.saml.SamlProxy

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.