Class EventConfig


  • public class EventConfig
    extends java.lang.Object
    Holds the event and action configuration for a component. Structure is a map of event groups, which hold a map of eventName to ActionConfig[]
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String COMPONENT_EVENTS
      Event category key for events that are fired by component implementations.
      static java.lang.String DOM_EVENTS
      Event category key for events that are fired by the DOM
      java.util.Map<java.lang.String,​com.google.common.collect.Multimap<java.lang.String,​ActionConfig>> eventGroups  
      static java.lang.String MODEL_EVENTS
      Event category key for events that are fired by component delegate implementations.
      static java.lang.String SYSTEM_EVENTS
      Event category key for events fired by the system, such as startup and shutdown events
    • Constructor Summary

      Constructors 
      Constructor Description
      EventConfig()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • DOM_EVENTS

        public static final java.lang.String DOM_EVENTS
        Event category key for events that are fired by the DOM
        See Also:
        Constant Field Values
      • COMPONENT_EVENTS

        public static final java.lang.String COMPONENT_EVENTS
        Event category key for events that are fired by component implementations.
        See Also:
        Constant Field Values
      • MODEL_EVENTS

        public static final java.lang.String MODEL_EVENTS
        Event category key for events that are fired by component delegate implementations.
        See Also:
        Constant Field Values
      • SYSTEM_EVENTS

        public static final java.lang.String SYSTEM_EVENTS
        Event category key for events fired by the system, such as startup and shutdown events
        See Also:
        Constant Field Values
      • eventGroups

        public java.util.Map<java.lang.String,​com.google.common.collect.Multimap<java.lang.String,​ActionConfig>> eventGroups
    • Constructor Detail

      • EventConfig

        public EventConfig()
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object