1 package com.atlassian.event.config;
2
3 import com.atlassian.event.spi.ListenerHandler;
4
5 import java.util.List;
6
7 /**
8 * Specifies a listener handler configuration to use
9 */
10 public interface ListenerHandlersConfiguration {
11 List<ListenerHandler> getListenerHandlers();
12 }