Interface CreditCards


public interface CreditCards
A data store for credit cards.
  • Method Summary

    Modifier and Type
    Method
    Description
    all()
    Returns all credit cards.
    void
    Clears all records in the store.
    void
    remove(CreditCard creditCard)
    Removes the credit from the store.
  • Method Details

    • all

      Returns all credit cards.

      Credit card records are saved to the store via SaveCreditCardCallback.

      Throws:
      ObjectClosedException - when the profile is deleted or its engine is closed
    • remove

      void remove(CreditCard creditCard)
      Removes the credit from the store.

      Removed credit cards are not displayed in the autofill suggestion pop-up.

      Throws:
      ObjectClosedException - when the profile is deleted or its engine is closed
    • clear

      void clear()
      Clears all records in the store.
      Throws:
      ObjectClosedException - when the profile is deleted or its engine is closed