Module java.base

Class ConfirmationCallback

  • All Implemented Interfaces:
    Serializable, Callback

    public class ConfirmationCallback
    extends Object
    implements Callback, Serializable

    Underlying security services instantiate and pass a ConfirmationCallback to the handle method of a CallbackHandler to ask for YES/NO, OK/CANCEL, YES/NO/CANCEL or other similar confirmations.

    Since:
    1.4
    See Also:
    CallbackHandler, Serialized Form
    • Field Detail

      • UNSPECIFIED_OPTION

        public static final int UNSPECIFIED_OPTION
        Unspecified option type.

        The getOptionType method returns this value if this ConfirmationCallback was instantiated with options instead of an optionType.

        See Also:
        Constant Field Values
      • YES_NO_OPTION

        public static final int YES_NO_OPTION
        YES/NO confirmation option.

        An underlying security service specifies this as the optionType to a ConfirmationCallback constructor if it requires a confirmation which can be answered with either YES or NO.

        See Also:
        Constant Field Values
      • YES_NO_CANCEL_OPTION

        public static final int YES_NO_CANCEL_OPTION
        YES/NO/CANCEL confirmation confirmation option.

        An underlying security service specifies this as the optionType to a ConfirmationCallback constructor if it requires a confirmation which can be answered with either YES, NO or CANCEL.

        See Also:
        Constant Field Values
      • OK_CANCEL_OPTION

        public static final int OK_CANCEL_OPTION
        OK/CANCEL confirmation confirmation option.

        An underlying security service specifies this as the optionType to a ConfirmationCallback constructor if it requires a confirmation which can be answered with either OK or CANCEL.

        See Also:
        Constant Field Values
      • YES

        public static final int YES
        YES option.

        If an optionType was specified to this ConfirmationCallback, this option may be specified as a defaultOption or returned as the selected index.

        See Also:
        Constant Field Values
      • NO

        public static final int NO
        NO option.

        If an optionType was specified to this ConfirmationCallback, this option may be specified as a defaultOption or returned as the selected index.

        See Also: