Interface WebChangeJournalEntries

  • All Known Implementing Classes:
    WebChangeJournalEntriesImpl

    public interface WebChangeJournalEntries
    This interface holds a collection of change journal entry. It provides methods to list all change journal, and add new change journal to this collection
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void clear()
      Remove all WebChangeJournalEntry objects in this collection.
      WebChangeJournalEntry get​(int index)
      Returns the WebChangeJournalEntry in this collection according to the index (0-based).
      int size()
      Returns the size of this collection.
    • Method Detail

      • size

        int size()
        Returns the size of this collection.
        Returns:
        The size of this collection.
      • get

        WebChangeJournalEntry get​(int index)
                           throws java.lang.IndexOutOfBoundsException
        Returns the WebChangeJournalEntry in this collection according to the index (0-based).
        Parameters:
        index - The index of the WebChangeJournalEntry object in the collection (0-based).
        Returns:
        the WebChangeJournalEntry object in this collection according to the index.
        Throws:
        java.lang.IndexOutOfBoundsException - Thrown when the index is less than 0 or greater or equals to the size of the collection.
      • clear

        void clear()
        Remove all WebChangeJournalEntry objects in this collection.