001    package com.hammurapi.eventbus.tests.familyties;
002    
003    import com.hammurapi.common.TokenExpander;
004    import com.hammurapi.eventbus.AbstractEventBus;
005    import com.hammurapi.eventbus.Introspector;
006    
007    /**
008     * Domain specific introspector with bound generic parameters.
009     */
010    public class FamilyTiesIntrospector extends Introspector<com.hammurapi.eventbus.tests.familyties.model.Relative, com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules, Long, AbstractEventBus.Handle<com.hammurapi.eventbus.tests.familyties.model.Relative,Integer,com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules,Long>, FamilyTiesEventStore, FamilyTiesEventBus> {
011    
012            public FamilyTiesIntrospector(ClassLoader classLoader, TokenExpander tokenExpander) {
013                    super(classLoader, tokenExpander);
014            }
015    
016    }