本文整理汇总了Java中javax.security.auth.callback.ConfirmationCallback.ERROR属性的典型用法代码示例。如果您正苦于以下问题:Java ConfirmationCallback.ERROR属性的具体用法?Java ConfirmationCallback.ERROR怎么用?Java ConfirmationCallback.ERROR使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.security.auth.callback.ConfirmationCallback
的用法示例。
在下文中一共展示了ConfirmationCallback.ERROR属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleTextOutput
protected synchronized void handleTextOutput(TextOutputCallback c)
{
Frame ownerFrame = new Frame();
Dialog dialog = new Dialog(ownerFrame);
dialog.setLayout(new GridLayout(2, 1));
switch (c.getMessageType() /*c.getStyle()*/)
{
case ConfirmationCallback.ERROR:
dialog.setTitle(messages.getString("callback.error"));
break;
case ConfirmationCallback.INFORMATION:
dialog.setTitle(messages.getString("callback.information"));
break;
case ConfirmationCallback.WARNING:
dialog.setTitle(messages.getString("callback.warning"));
break;
default:
dialog.setTitle("");
}
Label label = new Label(c.getMessage());
Panel buttons = new Panel();
Button ok = new Button(messages.getString("callback.ok"));
buttons.setLayout(new FlowLayout(FlowLayout.RIGHT));
buttons.add(ok);
ok.addActionListener(this);
dialog.add(label);
dialog.add(buttons);
dialog.pack();
dialog.show();
try { wait(); }
catch (InterruptedException ie) { }
dialog.dispose();
ownerFrame.dispose();
}
示例2: setCallback
void setCallback(ConfirmationCallback callback)
throws UnsupportedCallbackException
{
this.callback = callback;
int confirmationOptionType = callback.getOptionType();
switch (confirmationOptionType) {
case ConfirmationCallback.YES_NO_OPTION:
optionType = JOptionPane.YES_NO_OPTION;
translations = new int[] {
JOptionPane.YES_OPTION, ConfirmationCallback.YES,
JOptionPane.NO_OPTION, ConfirmationCallback.NO,
JOptionPane.CLOSED_OPTION, ConfirmationCallback.NO
};
break;
case ConfirmationCallback.YES_NO_CANCEL_OPTION:
optionType = JOptionPane.YES_NO_CANCEL_OPTION;
translations = new int[] {
JOptionPane.YES_OPTION, ConfirmationCallback.YES,
JOptionPane.NO_OPTION, ConfirmationCallback.NO,
JOptionPane.CANCEL_OPTION, ConfirmationCallback.CANCEL,
JOptionPane.CLOSED_OPTION, ConfirmationCallback.CANCEL
};
break;
case ConfirmationCallback.OK_CANCEL_OPTION:
optionType = JOptionPane.OK_CANCEL_OPTION;
translations = new int[] {
JOptionPane.OK_OPTION, ConfirmationCallback.OK,
JOptionPane.CANCEL_OPTION, ConfirmationCallback.CANCEL,
JOptionPane.CLOSED_OPTION, ConfirmationCallback.CANCEL
};
break;
case ConfirmationCallback.UNSPECIFIED_OPTION:
options = callback.getOptions();
/*
* There's no way to know if the default option means
* to cancel the login, but there isn't a better way
* to guess this.
*/
translations = new int[] {
JOptionPane.CLOSED_OPTION, callback.getDefaultOption()
};
break;
default:
throw new UnsupportedCallbackException(
callback,
"Unrecognized option type: " + confirmationOptionType);
}
int confirmationMessageType = callback.getMessageType();
switch (confirmationMessageType) {
case ConfirmationCallback.WARNING:
messageType = JOptionPane.WARNING_MESSAGE;
break;
case ConfirmationCallback.ERROR:
messageType = JOptionPane.ERROR_MESSAGE;
break;
case ConfirmationCallback.INFORMATION:
messageType = JOptionPane.INFORMATION_MESSAGE;
break;
default:
throw new UnsupportedCallbackException(
callback,
"Unrecognized message type: " + confirmationMessageType);
}
}