Class BmBlobEvent


  • public final class BmBlobEvent
    extends BmSubEvent
    Sub-event representing blob changes. Note that all the collections and maps returned by the methods of this class are for read-access only. In case of a modification attempt the behaviour is not defined.
    • Constructor Detail

      • BmBlobEvent

        public BmBlobEvent​(Collection<String> created,
                           Collection<String> changed,
                           Collection<String> removed)
        Constructs a new instance.
        Parameters:
        created - A collection of the created blobs. May not be null.
        changed - A collection of the changed blobs. May not be null.
        removed - A collection of the removed blobs. May not be null.
    • Method Detail

      • getCreated

        public Collection<String> getCreated()
        Gets created blobs.
        Returns:
        a collection of the created blobs. Never null.
      • getChanged

        public Collection<String> getChanged()
        Get changed blobs.
        Returns:
        a collection of the changed blobs. Never null.
      • getRemoved

        public Collection<String> getRemoved()
        Gets removed blobs.
        Returns:
        a collection of the removed blobs. Never null.