Interface Storage

All Known Subinterfaces:
LocalStorage, SessionStorage
All Known Implementing Classes:
RemoteLocalStorage, RemoteSessionStorage

@Deprecated public interface Storage
Deprecated.
Represents common operations available for all web storage types (session or local).
  • Method Details

    • getItem

      String getItem(String key)
      Deprecated.
    • keySet

      Set<String> keySet()
      Deprecated.
    • setItem

      void setItem(String key, String value)
      Deprecated.
    • removeItem

      String removeItem(String key)
      Deprecated.
    • clear

      void clear()
      Deprecated.
    • size

      int size()
      Deprecated.