Class EventNameFilter

java.lang.Object
com.azure.resourcemanager.webpubsub.models.EventListenerFilter
com.azure.resourcemanager.webpubsub.models.EventNameFilter

public final class EventNameFilter extends EventListenerFilter
Filter events by their name.
  • Constructor Details

    • EventNameFilter

      public EventNameFilter()
      Creates an instance of EventNameFilter class.
  • Method Details

    • systemEvents

      public List<String> systemEvents()
      Get the systemEvents property: Gets or sets a list of system events. Supported events: "connected" and "disconnected". Blocking event "connect" is not supported because it requires a response.
      Returns:
      the systemEvents value.
    • withSystemEvents

      public EventNameFilter withSystemEvents(List<String> systemEvents)
      Set the systemEvents property: Gets or sets a list of system events. Supported events: "connected" and "disconnected". Blocking event "connect" is not supported because it requires a response.
      Parameters:
      systemEvents - the systemEvents value to set.
      Returns:
      the EventNameFilter object itself.
    • userEventPattern

      public String userEventPattern()
      Get the userEventPattern property: Gets or sets a matching pattern for event names. There are 3 kinds of patterns supported: 1. "*", it matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches events "event1" and "event2" 3. A single event name, for example, "event1", it matches "event1".
      Returns:
      the userEventPattern value.
    • withUserEventPattern

      public EventNameFilter withUserEventPattern(String userEventPattern)
      Set the userEventPattern property: Gets or sets a matching pattern for event names. There are 3 kinds of patterns supported: 1. "*", it matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches events "event1" and "event2" 3. A single event name, for example, "event1", it matches "event1".
      Parameters:
      userEventPattern - the userEventPattern value to set.
      Returns:
      the EventNameFilter object itself.
    • validate

      public void validate()
      Validates the instance.
      Overrides:
      validate in class EventListenerFilter
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.