Class EventFilter


  • public class EventFilter
    extends Object
    Filter.
    • Field Detail

      • limit

        private Long limit
        The maximum number of events to return.
      • notSenders

        private List<String> notSenders
        A list of sender IDs to exclude. If this list is absent then no senders are excluded. A matching sender will be excluded even if it is listed in the 'senders' filter.
      • notTypes

        private List<String> notTypes
        A list of event types to exclude. If this list is absent then no event types are excluded. A matching type will be excluded even if it is listed in the 'types' filter. A '*' can be used as a wildcard to match any sequence of characters.
      • senders

        private List<String> senders
        A list of senders IDs to include. If this list is absent then all senders are included.
      • types

        private List<String> types
        A list of event types to include. If this list is absent then all event types are included. A '*' can be used as a wildcard to match any sequence of characters.
    • Constructor Detail

      • EventFilter

        public EventFilter()
    • Method Detail

      • getLimit

        public Long getLimit()
      • setLimit

        public void setLimit​(Long limit)
      • getNotSenders

        public List<String> getNotSenders()
      • setNotSenders

        public void setNotSenders​(List<String> notSenders)
      • setNotTypes

        public void setNotTypes​(List<String> notTypes)
      • setSenders

        public void setSenders​(List<String> senders)
      • setTypes

        public void setTypes​(List<String> types)