java命名空间javax.security.auth.callback类confirmationcallback的类成员方法:
confirmationcallback定义及介绍
本文导语:
confirmationcallback
public confirmationcallback(string prompt,
int messagetype,
int optiontype,
int defaultoption)
构造一个带有提示、消息类型、选项类型和默认选项的 confirmationcallback...
confirmationcallback
public confirmationcallback(string prompt,
int messagetype,
int optiontype,
int defaultoption)
- 构造一个带有提示、消息类型、选项类型和默认选项的
confirmationcallback
。
如果构造方法
iis7站长之家安全服务需要 yes/no、 yes/no/cancel 或 ok/cancel 确认信息,则它们使用此构造方法。
- 参数:
prompt
- 用于描述选项列表的提示。 messagetype
- 消息类型(information
、warning
或 error
)。 optiontype
- 选项类型(yes_no_option
、yes_no_cancel_option
或 ok_cancel_option
)。 defaultoption
- 从提供的 optiontype(yes
、no
、cancel
或 ok
)得出的默认选项。
- 抛出:
illegalargumentexception
- 如果 prompt
为 null,如果 prompt
的长度为 0,如果 messagetype 不是 information
、warning
或 error
,如果 optiontype 不是 yes_no_option
、yes_no_cancel_option
或 ok_cancel_option
,或者 defaultoption
不对应于 optiontype
中的某个选项。