lockIcon.setVisible(isAuthActivated(getRequest().getAuthType()));
lockIcon.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
lockIcon.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
Inspector inspector = getRequestEditor().getInspector(AuthInspectorFactory.INSPECTOR_ID);
if (inspector != null) {
((AbstractXmlInspector) inspector).showInPanel();
}
}
}