The definition of an Event is: ```java public interface Event { @Deprecated String getRelatedCustomResourceUid(); Predicate<CustomResource> getCustomResourcesSelector(); EventSource getEventSource(); } ``` Wonder if `getEventSource()` could be removed as looking at the code, it is only used for a [single test](https://github.com/java-operator-sdk/java-operator-sdk/blob/112a8268155a9f6262e1238b592e9813b09e1557/operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/event/internal/TimerEventSourceTest.java#L51) but it is never used internally.