Package org.owasp.webscarab.plugin.openid

Examples of org.owasp.webscarab.plugin.openid.PAPEResponse


    private void displayOpenID(ConversationID id) {
        resetDisplay();
        this.parametersTableModel.setParameters(this.openIdModel.getParameters(id));
        this.axFetchRequestTableModel.setAttributes(this.openIdModel.getAXFetchRequestAttributes(id));
        this.axFetchResponseTableModel.setAttributes(this.openIdModel.getAXFetchResponseAttributes(id));
        PAPEResponse papeResponse = this.openIdModel.getPAPEResponse(id);
        if (null != papeResponse) {
            if (null != papeResponse.getAuthenticationTime()) {
                this.papeAuthnTimeLabel.setText(papeResponse.getAuthenticationTime().toString());
            } else {
                this.papeAuthnTimeLabel.setText("Not provided.");
            }
            this.phishingResistantCheckBox.setSelected(papeResponse.isPhishingResistant());
            this.multiFactorCheckBox.setSelected(papeResponse.isMultiFactor());
            this.physicalMultiFactorCheckBox.setSelected(papeResponse.isMultiFactorPhysical());
            this.papeSignedCheckBox.setSelected(papeResponse.isSigned());
        }
    }
View Full Code Here

TOP

Related Classes of org.owasp.webscarab.plugin.openid.PAPEResponse

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.