Interface ContextRepository

All Known Implementing Classes:
DefaultContextRepository

public interface ContextRepository
Interface for ContextRepository to manage ContextMap.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Clear out the entire context store
    get(String name)
    Return a single ContextMap object for the given name
    Returns an enumeration of all keys.
    void
    put(String name, ContextMap context)
    Add a single ContextMap object to the context store
    int
    return the size of the current context store
  • Method Details

    • get

      ContextMap get(String name)
      Return a single ContextMap object for the given name
      Parameters:
      name -
      Returns:
    • put

      void put(String name, ContextMap context)
      Add a single ContextMap object to the context store
      Parameters:
      name -
      context -
    • clear

      void clear()
      Clear out the entire context store
    • size

      int size()
      return the size of the current context store
      Returns:
    • keys

      Returns an enumeration of all keys.
      Returns: