String relayState = this.samlModel.getRelayState(id);
this.relayStatePanel.setText(null, relayState);
displaySignature(id);
ConversationID htmlFormConversationID = this.samlModel.findCorrespondingHTMLFormConversation(id);
if (null == htmlFormConversationID) {
this.htmlFormConversationIdLabel.setText("Not found");
} else {
this.htmlFormConversationIdLabel.setText(htmlFormConversationID.toString());
byte[] content = this.samlModel.getResponseContent(htmlFormConversationID);
this.htmlFormTextPanel.setBytes("UTF-8", content);
this.htmlFormXmlPanel.setBytes("text/html", content);
this.browserPostSslCheckBox.setSelected(this.samlModel.isOverSSL(id));
this.htmlFormSslCheckBox.setSelected(this.samlModel.isOverSSL(htmlFormConversationID));