001    package com.hammurapi.eventbus.local;
002    
003    import com.hammurapi.common.TokenExpander;
004    import com.hammurapi.eventbus.AbstractEventBus;
005    import com.hammurapi.eventbus.Introspector;
006    
007    /**
008     * Introspector with bound generic parameters.
009     * @author Pavel Vlasov
010     *
011     * @param <E>
012     * @param <C>
013     */
014    public class LocalIntrospector<E,C> extends Introspector<E, C, Long, AbstractEventBus.Handle<E,Integer,C,Long>, LocalEventStore<E,Integer,C>, LocalEventBus<E, Integer, C>> {
015    
016            public LocalIntrospector(ClassLoader classLoader, TokenExpander tokenExpander) {
017                    super(classLoader, tokenExpander);
018            }
019    
020    }